View hello.c8.chp
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
OPTION CHIP8 | |
JP LOOP ; jump to main loop | |
DA '[Hello PICO-8 by AfBu]' | |
LOOP: | |
RND V0,29 ; random value to register V0 (x) | |
RND V1,23 ; random value to register V1 (y) | |
ADD V1,4 ; add 4 to register V1 |