Skip to content

Instantly share code, notes, and snippets.

@topher6345
Last active August 29, 2015 14:11
Show Gist options
  • Save topher6345/fc20d8565d424ee6440d to your computer and use it in GitHub Desktop.
Save topher6345/fc20d8565d424ee6440d to your computer and use it in GitHub Desktop.
ASM Counter
; COUNTER
JMP start
start:
CALL counter
counter:
POP D ; Avoid stack overflow
INC A ; A++
CMP A, 10 ; A == 10
JE end ; Jump to end above is true
CALL counter
end:
HLT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment