Initial release of CAR

This commit is contained in:
2026-07-16 13:46:13 -05:00
commit 1028ca7340
11 changed files with 942 additions and 0 deletions

12
program.txt Normal file
View File

@ -0,0 +1,12 @@
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