about summary refs log tree commit diff stats
path: root/mu-init-test.subx
Commit message (Collapse)AuthorAgeFilesLines
* 6153 - switch 'main' to use Mu stringsKartik Agaram2020-03-151-4/+4
| | | | | | | | | | | At the SubX level we have to put up with null-terminated kernel strings for commandline args. But so far we haven't done much with them. Rather than try to support them we'll just convert them transparently to standard length-prefixed strings. In the process I realized that it's not quite right to treat the combination of argc and argv as an array of kernel strings. Argc counts the number of elements, whereas the length of an array is usually denominated in bytes.
* 5924Kartik Agaram2020-01-271-1/+1
|
* 5897 - rename comparison instructionsKartik Agaram2020-01-161-2/+2
| | | | | | | Signed and unsigned don't quite capture the essence of what the different combinations of x86 flags are doing for SubX. The crucial distinction is that one set of comparison operators is for integers and the second is for addresses.
* 5851Kartik Agaram2020-01-011-1/+1
| | | | | | | | | | | | Rename a few scripts to be more consistent. I'm also starting to feel the urge to bud off `subx run` into its own program, say tools/emulate_x86. It doesn't really rely on the SubX notation at all. And then I could rename `subx translate` to `translate_subx_bootstrap`. Only problem: the commands in the Readme get verbose. But the Readme is gonna need surgery soon anyway to put translate_mu front and center.
* 5850 - driver script for translating Mu programsKartik Agaram2020-01-011-0/+37
eck.cc.html?h=main&id=9570363aec35e187e2395b1760a4b94e71580ac9'>9570363a ^
90560d71 ^
9570363a ^
90560d71 ^
9570363a ^


90560d71 ^
9570363a ^





90560d71 ^


9570363a ^
90560d71 ^


9570363a ^
90560d71 ^
9570363a ^




90560d71 ^

9570363a ^


90560d71 ^


9570363a ^

4fe9f5e8 ^

9570363a ^



90560d71 ^
9570363a ^




90560d71 ^
9570363a ^







90560d71 ^
9570363a ^

4fe9f5e8 ^



90560d71 ^
4fe9f5e8 ^


9570363a ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128