Overview
Resources
About
Touch
 Metal
Assemble Your Code Online
Enter your code below and hit the Assemble button to convert it to machine code
Make text larger
; ; Sample code here; enter your own :) ; .org 0 ; start of memory ldi R0,10. ; This is our counter Loop: out R0 ; send to output register dec R0 ; count down jnz Loop ; and continue till 0 ; all done here Spin: jmp Spin ; sit here forever .end