mirror of
https://github.com/makarcz/vm6502.git
synced 2024-12-28 05:29:47 +00:00
dce9babd36
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.
6 lines
95 B
QBasic
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
|