Files
CAR/program.txt
2026-07-16 13:46:13 -05:00

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