mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-23 07:46:22 +00:00
14 lines
406 B
Plaintext
14 lines
406 B
Plaintext
------- Copy 10+1 bytes from buffer to target
|
|
------- EX to OR in the length
|
|
before: buffer = |0123456789abcdef|
|
|
before: target = |XXXXXXXXXXXXXXXX|
|
|
after: buffer = |0123456789abcdef|
|
|
after: target = |0123456789aXXXXX|
|
|
|
|
------- EX 0,... has no effect (writes out target)
|
|
target = |0123456789aXXXXX|
|
|
|
|
------- EX to OR in the syscall number (writes out target)
|
|
target = |0123456789aXXXXX|
|
|
|