13 lines
174 B
Plaintext
13 lines
174 B
Plaintext
|
|
|
||
|
|
What program.bin does is this:
|
||
|
|
|
||
|
|
; Move the value 8 into r0 and r1
|
||
|
|
mov r0, #0x8
|
||
|
|
mov r1, #0x8
|
||
|
|
|
||
|
|
; multiply r0 by r1 and store the result in r2
|
||
|
|
mul r2, r0, r1
|
||
|
|
|
||
|
|
; do nothing
|
||
|
|
nop
|