mu/subx/examples/ex7.subx

104 lines
3.7 KiB
Plaintext
Raw Normal View History

2018-09-01 17:04:58 +00:00
## example showing file syscalls
# Create a file, open it for writing, write a character to it, close it, open
# it for reading, read a character from it, close it, delete it, and return
# the character read.
#
2018-10-01 19:28:30 +00:00
# To run (from the subx directory):
2018-10-01 22:18:00 +00:00
# $ subx translate examples/ex7.subx -o examples/ex7
# $ subx run examples/ex7
# Expected result:
# $ echo $?
2018-09-01 17:04:58 +00:00
# 97
== code
2018-08-04 06:23:39 +00:00
# instruction effective address operand displacement immediate
# op subop mod rm32 base index scale r32
# 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
2018-10-14 19:53:50 +00:00
# syscall(creat, filename)
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX filename/imm32
b9/copy-to-ECX 0x180/imm32/fixed-perms
b8/copy-to-EAX 8/imm32/creat
cd/syscall 0x80/imm8
2018-10-14 19:53:50 +00:00
# stream = syscall(open, filename, O_WRONLY, 0) # we can't use 'fd' because it looks like a hex byte
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX filename/imm32
b9/copy-to-ECX 1/imm32/wronly
ba/copy-to-EDX 0x180/imm32/fixed-perms
b8/copy-to-EAX 5/imm32/open
cd/syscall 0x80/imm8
2018-09-21 04:34:56 +00:00
# save stream
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX stream/imm32
2018-10-06 04:50:20 +00:00
89/copy 0/mod/indirect 3/rm32/EBX . . . 0/r32/EAX . . # copy EAX to *EBX
2018-10-14 19:53:50 +00:00
# syscall(write, stream, "a", 1)
2018-09-21 04:34:56 +00:00
# load stream
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX stream/imm32
2018-10-06 04:50:20 +00:00
8b/copy 0/mod/indirect 3/rm32/EBX . . . 3/r32/EBX . . # copy *EBX to EBX
2018-09-21 04:34:56 +00:00
#
2018-10-06 04:30:22 +00:00
b9/copy-to-ECX a/imm32
ba/copy-to-EDX 1/imm32/size
b8/copy-to-EAX 4/imm32/write
cd/syscall 0x80/imm8
2018-10-14 19:53:50 +00:00
# syscall(close, stream)
2018-09-21 04:34:56 +00:00
# load stream
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX stream/imm32
2018-10-06 04:50:20 +00:00
8b/copy 0/mod/indirect 3/rm32/EBX . . . 3/r32/EBX . . # copy *EBX to EBX
2018-09-21 04:34:56 +00:00
#
2018-10-06 04:30:22 +00:00
b8/copy-to-EAX 6/imm32/close
cd/syscall 0x80/imm8
2018-09-01 17:04:58 +00:00
2018-10-14 19:53:50 +00:00
# stream = syscall(open, filename, O_RDONLY, 0)
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX filename/imm32
b9/copy-to-ECX 0/imm32/rdonly
ba/copy-to-EDX 0x180/imm32/fixed-perms
b8/copy-to-EAX 5/imm32/open
cd/syscall 0x80/imm8
2018-09-21 04:34:56 +00:00
# save stream
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX stream/imm32
2018-10-06 04:50:20 +00:00
89/copy 0/mod/indirect 3/rm32/EBX . . . 0/r32/EAX . . # copy EAX to *EBX
2018-09-01 17:04:58 +00:00
2018-10-14 19:53:50 +00:00
# syscall(read, stream, b, 1)
2018-09-21 04:34:56 +00:00
# load stream
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX stream/imm32
2018-10-06 04:50:20 +00:00
8b/copy 0/mod/indirect 3/rm32/EBX . . . 3/r32/EBX . . # copy *EBX to EBX
2018-09-21 04:34:56 +00:00
#
2018-10-06 04:30:22 +00:00
b9/copy-to-ECX b/imm32
ba/copy-to-EDX 1/imm32/size
b8/copy-to-EAX 3/imm32/read
cd/syscall 0x80/imm8
2018-09-01 17:04:58 +00:00
2018-10-14 19:53:50 +00:00
# syscall(close, stream)
2018-09-21 04:34:56 +00:00
# load stream
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX stream/imm32
2018-10-06 04:50:20 +00:00
8b/copy 0/mod/indirect 3/rm32/EBX . . . 3/r32/EBX . . # copy *EBX to EBX
2018-09-21 04:34:56 +00:00
#
2018-10-06 04:30:22 +00:00
b8/copy-to-EAX 6/imm32/close
cd/syscall 0x80/imm8
2018-09-01 17:04:58 +00:00
2018-10-14 19:53:50 +00:00
# syscall(unlink, filename)
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX filename/imm32
b8/copy-to-EAX 0xa/imm32/unlink
cd/syscall 0x80/imm8
2018-09-01 17:04:58 +00:00
2018-10-14 19:53:50 +00:00
# syscall(exit, b)
2018-09-21 04:34:56 +00:00
# load b
2018-10-06 04:30:22 +00:00
bb/copy-to-EBX b/imm32
2018-10-06 04:50:20 +00:00
8b/copy 0/mod/indirect 3/rm32/EBX . . . 3/r32/EBX . . # copy *EBX to EBX
2018-09-21 04:34:56 +00:00
#
2018-10-06 04:30:22 +00:00
b8/copy-to-EAX 1/imm32/exit
cd/syscall 0x80/imm8
2018-09-01 17:04:58 +00:00
== data
stream:
2018-09-21 04:54:13 +00:00
00 00 00 00
a:
2018-09-21 04:54:13 +00:00
61 00 00 00
b:
2018-09-21 04:54:13 +00:00
00 00 00 00
filename:
2018-09-21 04:54:13 +00:00
2e 66 6f 6f 00 00 00 00
2018-09-01 17:04:58 +00:00
2018-10-05 17:42:16 +00:00
# vim:nowrap:textwidth=0