Created
November 14, 2017 20:12
-
-
Save slugbyte/e4427594877fe949e342de1c580c8c7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_main | |
OUT 1 0 | |
JMP _on | |
_loop | |
JGT A 64 _flip | |
OUT x80 A | |
ADD 1 A | |
JMP _loop | |
_flip | |
MOV 0 A | |
JGT x80 0 _off | |
JMP _on | |
_on | |
MOV 1 x80 | |
JMP _loop | |
_off | |
MOV 0 x80 | |
JMP _loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment