1
0
mirror of https://github.com/makarcz/vm6502.git synced 2024-07-07 01:29:04 +00:00
vm6502/hello_world.bas
makarcz 0dd5a0299f Virtual Machine 6502
This is the initial development of VM6502 project. Initially it is a VM
emulating MOS 6502 opcodes, but in the future my intention is to use the
free illegal opcodes to extend its functionality.
2016-02-20 18:14:25 -05:00

6 lines
90 B
QBasic

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