Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- INP
- STA a
- INP
- STA b
- LDA ZERO
- STA res
- LOOP LDA b
- BRZ END
- LDA res
- ADD a
- STA res
- LDA b
- SUB ONE
- STA b
- BRA LOOP
- END LDA res
- OUT
- HLT
- a DAT
- b DAT
- res DAT
- ZERO DAT 0
- ONE DAT 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement