Created
November 22, 2020 11:39
-
-
Save floehopper/eee1920e9aaa73246d5ff6c219a65434 to your computer and use it in GitHub Desktop.
ZX81 machine code program to print "HI"
This file contains 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
10 REM 000000000000 | |
20 POKE 16514, 1 | |
30 POKE 16515, 141 | |
40 POKE 16516, 64 | |
50 POKE 16517, 17 | |
60 POKE 16518, 2 | |
70 POKE 16519, 0 | |
80 POKE 16520, 205 | |
90 POKE 16521, 107 | |
100 POKE 16522, 11 | |
110 POKE 16523, 201 | |
120 POKE 16524, 72 | |
130 POKE 16525, 73 | |
140 PRINT USR 16514 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment