-
Notifications
You must be signed in to change notification settings - Fork 2
/
build_bos_inc.py
399 lines (376 loc) · 8.48 KB
/
build_bos_inc.py
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
#!/usr/bin/python3
from os import path
def error(e):
print("Something went wrong!")
print("Error:",e)
quit()
def myhex(n):
return hex(n)[2:].upper()
try:
with open(path.join(path.dirname(__file__), "src", "table.asm")) as f:
data=f.read().splitlines()
except Exception as e:
error(e)
try:
with open(path.join(path.dirname(__file__), "src", "include", "defines.inc")) as f:
defines=f.read().splitlines()
except Exception as e:
error(e)
try:
with open(path.join(path.dirname(__file__), "src", "include", "boot_calls.inc")) as f:
bootcalls=f.read()
except Exception as e:
error(e)
def build_bos_inc():
counter=0x020108
with open(path.join(path.dirname(__file__), "bos.inc"),"w") as f:
f.write("""
;-------------------------------------------------------------------------------
; Executable formats
;-------------------------------------------------------------------------------
macro ram_executable?
ram_executable_at ti.userMem
end macro
macro ram_executable_at? addr
org addr
db $18,$04,"REX",$00
end macro
macro flash_executable? header:1
local flashexecbase
element flashexecbase
virtual at flashexecbase
if header = 1
db $18,$04,"FEX",$00
end if
macro end?.flash_executable?
purge ?
purge end?.flash_executable?
local prgmdata, prgmlen
prgmlen := $-$$
load prgmdata: $-$$ from $$
end virtual
db prgmdata
end macro
macro ? line&
match opcode= args, line
if `opcode = "call" | `opcode = "jp" | `opcode = "jq" | `opcode = "ld" | `opcode = "syscall"
match lhs=,rhs, args
match (val), lhs
if val relativeto flashexecbase
rst $28
opcode (0), rhs
store val - $ : 3 at $ - 3
else
opcode (val), rhs
end if
else match (val), rhs
if val relativeto flashexecbase
rst $28
opcode lhs, (0)
store val - $ : 3 at $ - 3
else
opcode lhs, (val)
end if
else if rhs relativeto flashexecbase
rst $28
opcode lhs, 0
store rhs - $ : 3 at $ - 3
else
opcode lhs, rhs
end if
else match opcode= lhs, line
match (val), lhs
opcode lhs
else if lhs relativeto flashexecbase
rst $28
opcode 0
store lhs - $ : 3 at $ - 3
else
opcode lhs
end if
else
opcode lhs,rhs
end match
else if args relativeto flashexecbase
opcode args - flashexecbase
else
opcode args
end if
else
line
end match
end macro
end macro
;-------------------------------------------------------------------------------
; Syscall instruction macro
;-------------------------------------------------------------------------------
; lbl should point to a string containing the syscall path
; example:
; syscall gfx_PrintString
; ...
; gfx_PrintString:
; db "gfx/PrintString",0
macro syscall? lbl
rst $18
dl lbl - $+3
end macro
;-------------------------------------------------------------------------------
; Syscall library macro
;-------------------------------------------------------------------------------
macro syscalllib? sclname
local exports
local flashexecbase
element flashexecbase
virtual
exports.area::
end virtual
virtual as "h"
header.area::
end virtual
virtual as "src"
symbols.area::
end virtual
virtual at flashexecbase-5
db "SCL",0
macro export? routine, name, hname, hdef&
virtual exports.area
if defined routine.ramroutine
db 2
else
db 1
end if
dw routine-flashexecbase
db name, 0
end virtual
virtual header.area
db hdef
db $A
end virtual
virtual symbols.area
db "public _", hname,$A
db '_',hname,' := syscall "',sclname,'/',name,'"',$A
end virtual
end macro
macro export_data? data, name, hname, hdef&
virtual exports.area
db 3
dw data-flashexecbase
db name, 0
end virtual
virtual header.area
db hdef
db $A
end virtual
end macro
macro export_ptr? routine, name, hname, hdef&
virtual exports.area
db 8
dl routine
db name, 0
end virtual
virtual header.area
db hdef
db $A
end virtual
virtual symbols.area
db "public _", hname,$A
db '_',hname,' := syscall "',sclname,'/',name,'"',$A
end virtual
end macro
macro ram_routine? routine, ramloc
routine.ramroutine:
routine.dataloc:
virtual at ramloc
macro end?.ram_routine?
routine.len := $-$$
load routine.data: $-$$ from $$
end virtual
dw routine.len
dl ramloc
db routine.data
purge end?.ram_routine?
end macro
end macro
macro data_block?
local data
virtual
macro end?.data_block?
data.len := $-$$
load data.data: $-$$ from $$
end virtual
dw data.len
db data.data
purge end?.data_block?
end macro
end macro
macro end?.syscalllib?
load exports.code: $-$$ from $$
end virtual
virtual exports.area
db 0
load exports.data: $-$$ from $$
end virtual
db exports.data
db exports.code
purge call?
purge jp?
purge jq?
purge ld?
purge syscall?
purge export?
purge end?.syscalllib?
end macro
iterate opcode, call,jp,jq,ld,syscall
macro opcode? args&
match lhs=,rhs, args
match (val), lhs
if val relativeto flashexecbase
rst $28
opcode (0), rhs
store val - $ : 3 at $ - 3
else
opcode (val), rhs
end if
else match (val), rhs
if val relativeto flashexecbase
rst $28
opcode lhs, (0)
store val - $ : 3 at $ - 3
else
opcode lhs, (val)
end if
else if rhs relativeto flashexecbase
rst $28
opcode lhs, 0
store rhs - $ : 3 at $ - 3
else
opcode lhs, rhs
end if
else match opcode= lhs, line
match (val), lhs
opcode lhs
else if lhs relativeto flashexecbase
rst $28
opcode 0
store lhs - $ : 3 at $ - 3
else
opcode lhs
end if
else if args relativeto flashexecbase
opcode args - flashexecbase
else
opcode args
end if
end macro
end iterate
end macro
;-------------------------------------------------------------------------------
; Software threading instructions
;-------------------------------------------------------------------------------
macro EnableThreading?
rst $10
nop
end macro
macro EnableOSThreading?
rst $10
rst $28
end macro
macro DisableThreading?
rst $10
rst $38
end macro
macro SleepThread?
rst $10
halt
end macro
macro WakeThread?
rst $10
rst $20
end macro
macro EndThread?
rst $10
ret
end macro
macro SpawnThread? start_pc, start_sp
rst $10
push bc
dl start_sp
dl start_pc
end macro
macro HandleNextThread?
rst $10
pop bc
end macro
macro HandleNextThread_IfOSThreading?
rst $10
rst $30
end macro
;-------------------------------------------------------------------------------
; Device macros
;-------------------------------------------------------------------------------
macro device_file? flags, type, version, intsource
virtual
db $C9, flags, type, version, intsource, 0, 0, 0
repeat 11
or a,a
sbc hl,hl
ret
end repeat
macro export? jumpno, function
if function > 0
store $C3: byte at $$+jumpno
store function: 3 at $$+jumpno+1
end if
end macro
macro end?.device_file?
local data
load data: $-$$ from $$
end virtual
db data
purge export?
end macro
end macro
;-------------------------------------------------------------------------------
; OS call defines
;-------------------------------------------------------------------------------
define bos? bos
namespace bos
; jump table
""")
for line in data:
if line.startswith(";$=$"):
counter = int(line[4:], 16)
elif "jp " in line:
line=line[line.find("jp ")+3:]
if ";" in line:
line=line.split(';')[0].strip("\t ")
if line=="DONOTHING":
f.write(";DONOTHING := $"+myhex(counter)+"\n")
else:
f.write("?"+line.ljust(32," ")+(":= $"+myhex(counter))+"\n")
counter+=4
elif "call " in line:
line=line[line.find("call ")+5:]
if ";" in line:
line=line.split(';')[0].strip("\t ")
if line=="DONOTHING":
f.write(";DONOTHING := $"+myhex(counter)+"\n")
else:
f.write("?"+line.ljust(32," ")+(":= $"+myhex(counter))+"\n")
counter+=4
else:
if not line.startswith(";"):
f.write(";")
f.write(line+"\n")
f.write(""";-------------------------------------------------------------------------------
; OS memory areas and misc defines
;-------------------------------------------------------------------------------
""")
for line in defines:
if len(line):
o=ord(line[0])
if o in range(0x41,0x5B) or o in range(0x61,0x7B):
f.write("?"+line+"\n")
f.write("\nend namespace")
if __name__=='__main__':
build_bos_inc()