You are viewing an older revision! See the latest version
Compiler Error 241
Trying to assemble the simple program below
AREA main, CODE, READONLY
- Name this block of code main
- ENTRY ; Mark first instruction to execute MOVS r0, #10 ; Set up parameters MOVS r1, #3 ADD r0, r0, r1 ; r0 = r0 + r1 END ; Mark end of file