mu/apps/ex1.subx

19 lines
383 B
Plaintext
Raw Normal View History

# First program: same as https://www.muppetlabs.com/~breadbox/software/tiny/teensy.html
2018-07-16 14:55:07 +00:00
# Just return 42.
#
2019-08-20 06:45:04 +00:00
# To run:
2019-09-15 07:01:12 +00:00
# $ ./subx translate init.linux examples/ex1.2.subx -o examples/ex1
2018-12-30 08:36:07 +00:00
# $ ./subx run examples/ex1
2018-07-27 23:53:47 +00:00
# Expected result:
# $ echo $?
# 42
== code
2018-11-26 08:26:20 +00:00
Entry:
# exit(42)
bb/copy-to-ebx 2a/imm32 # 42 in hex
e8/call syscall_exit/disp32
# . . vim:nowrap:textwidth=0