fork download
  1. global _start
  2.  
  3. section .data
  4.  
  5. section .text
  6.  
  7. _start:
  8. ; your code goes here
  9. je exit
  10.  
  11. exit:
  12. ldi R16,4;
  13. ldi R17,2;
  14. mov R0,R16;
  15. mov R1,R17;
  16.  
  17.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:12: error: parser: instruction expected
prog.asm:13: error: symbol `ldi' redefined
prog.asm:13: error: parser: instruction expected
ld: cannot find prog.o: No such file or directory
stdout
Standard output is empty