9d27e966 ^
b8cfbdc8 ^
863a42d3 ^
668700fd ^
d1cfa5e3 ^
4c19dd39 ^
013d9526 ^
ecfbbfb5 ^
e5cbbea4 ^
aef4efb9 ^
8bbafb13 ^
ee9a9237 ^
1
2
3
4
5
6
7 8 9
10
11
12
13
14
15
16
17
18
# First program: same as https://www.muppetlabs.com/~breadbox/software/tiny/teensy.html # Just return 42. # # To run: # $ ./bootstrap translate init.linux apps/ex1.subx -o apps/ex1 # $ ./bootstrap run apps/ex1 # Expected result: # $ echo $? # 42 == code Entry: # exit(42) bb/copy-to-ebx 0x2a/imm32 # 42 in hex e8/call syscall_exit/disp32 # . . vim:nowrap:textwidth=0