1
0
mirror of https://github.com/makarcz/vm6502.git synced 2024-05-29 00:41:47 +00:00
vm6502/hello_world.bas
Marek Karcz dce9babd36 Char I/O
Improvements to character I/O emulation:
* Performance.
* Use native console STDIO in execute mode, text display emulation in
debug mode.
* Always shadow character I/O with text device emulation, even when
native STDIO is used.
2016-03-15 01:09:40 -04:00

6 lines
95 B
QBasic

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