about summary refs log tree commit diff stats
path: root/subx/067parse-hex.subx
Commit message (Collapse)AuthorAgeFilesLines
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-874/+0
|
* 5438 - raise error on uppercase hexKartik Agaram2019-07-211-5/+70
| | | | | | | | | | | | | | | | | | We can now translate layers 49-56 using the self-hosted translator (`translate` and `ntranslate`). As a follow-up to commit 5404, the self-hosted translator is a little more strict than the C++ translator in 3 places: a) All .subx files must define a data segment. b) All .subx files must define an `Entry` label. c) All numbers must be in *lowercase* hex. In all cases, where programs work with the C++ translator but violate the self-hosted translator's assumptions, we must make sure we raise errors rather than silently emit bad code.
* 5437Kartik Agaram2019-07-211-0/+809
Break a dependency from `print-int32` to `from-hex-char`.
m/commit/client.c?h=2.5&id=8a8b7956b6de80decbfd3bff6d2ad6e5bb69b2bd'>8a8b795 ^
439e15d ^




















0053620 ^
3399650 ^













0053620 ^
439e15d ^
0053620 ^
439e15d ^










439e15d ^






3399650 ^
439e15d ^








0053620 ^



3399650 ^



0053620 ^
439e15d ^
0053620 ^



439e15d ^


0053620 ^
439e15d ^
0053620 ^










3399650 ^


0053620 ^

439e15d ^
0053620 ^

3399650 ^
586f663 ^

439e15d ^
16c67f3 ^
0053620 ^
16c67f3 ^








3399650 ^
586f663 ^






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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146