https://github.com/akkartik/mu/blob/master/examples/ex5.subx
 1 # Read a character from stdin, save it to a local on the stack, write it to stdout.
 2 #
 3 # To run:
 4 #   $ ./subx translate examples/ex5.subx -o examples/ex5
 5 #   $ ./subx run examples/ex5
 6 
 7 == code 0x09000000
 8 #   instruction                     effective address                                                   register    displacement    immediate
 9 # . op          subop               mod             rm32          base        index         scale       r32
10 # . 1-3 bytes   3 bits              2 bits          3 bits        3 bits      3 bits        2 bits      2 bits      0/1/2/4 bytes   0/1/2/4 bytes
11 
12 Entry:
13 
14     # allocate x on the stack
15     81          5/subop/subtract    3/mod/direct    4/rm32/esp    .           .             .           .           .               4/imm32           # subtract from esp
16 
17     # syscall(read, stdin, x, 1)
18     # . fd = 0 (stdin)
19     bb/copy-to-ebx  0/imm32
20     # . data = x (location to write result to)
21     8d/copy-address                 1/mod/*+disp8   4/rm32/sib    4/base/esp  4/index/none              1/r32/ecx   4/disp8         .                 # copy esp+4 to ecx
22     # . size = 1 character
23     ba/copy-to-edx  1/imm32
24     # . syscall
25     b8/copy-to-eax  3/imm32/read
26     cd/syscall  0x80/imm8
27 
28     # syscall(write, stdout, x, 1)
29     # . fd = 1 (stdout)
30     bb/copy-to-ebx  1/imm32
31     # . data = x (location to read from)
32     8d/copy-address                 1/mod/*+disp8   4/rm32/sib    4/base/esp  4/index/none              1/r32/ecx   4/disp8         .                 # copy esp+4 to ecx
33     # . size = 1 character
34     ba/copy-to-edx  1/imm32
35     # . syscall
36     b8/copy-to-eax  4/imm32/write
37     cd/syscall  0x80/imm8
38 
39     # syscall(exit, ebx)
40     b8/copy-to-eax  1/imm32/exit
41     cd/syscall  0x80/imm8
42 
43 == data 0x0a000000
44 
45 # . . vim:nowrap:textwidth=0