Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; Template for 10c.co DCPU-16 tutorials
- ; Include some boilerplate
- #include <boilerplate.dasm>
- ; Add your code here
- SET A, 0
- count:
- SET X, 0
- SET Y, 1
- ADD A, 1
- JSR print_dec
- SET PC, count
- end:
- SET PC, end ; Loop forever
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement