about summary refs log tree commit diff stats
path: root/linux/ex1.subx
blob: 183c014ab69c7bf082cc9626bc2df4c18d8a297e (plain) (blame)
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/bootstrap translate ex1.subx -o ex1
#   $ bootstrap/bootstrap run 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