1 ------- Copy 10+1 bytes from buffer to target
2 ------- EX to OR in the length
3 before: buffer = |0123456789abcdef|
4 before: target = |XXXXXXXXXXXXXXXX|
5 after: buffer = |0123456789abcdef|
6 after: target = |0123456789aXXXXX|
8 ------- EX 0,... has no effect (writes out target)
9 target = |0123456789aXXXXX|
11 ------- EX to OR in the syscall number (writes out target)
12 target = |0123456789aXXXXX|
14 ------- EX targeting a PC-relative instruction
15 offset = |0000000000000000|
17 ------- EX targeting a branch-and-link instruction
18 offset = |0000000000000002|