1
0
mirror of https://github.com/makarcz/vm6502.git synced 2024-07-07 01:29:04 +00:00
vm6502/hello_world.bas
Marek Karcz 67f1a62596 Version 2.0
Version 2.0, full emulation of 6502 op-codes, fully tested and functional. Extended description in ReadMe file. Bin2Hex tool to convert binary images to memory definition format. Microchess, EhBasic added.
2016-03-13 19:12:14 -04:00

6 lines
97 B
QBasic

10 LET A=0
20 PR A;") HELLO WORLD FROM MKHBC!"
30 LET A=A+1
40 IF A>100 THEN END
50 GOTO 20