Commodore Basic V2 Test

Опубликовано: 14 Май 2026
на канале: Jeremy X
581
12

I've been creating a new version of Basic for my 16 bit computer,
it's a mix between Commodore Basic and TI Basic.

All basic program instructions are now tokenized.

I'm really not a fan of the line number system, so it's being replaced
with something similar to the TI basic label system.

"OUTPUT" can be used to display text to any part of the display, even the border.
"PRINT" functions mostly the same as in Commodore basic
"TEXT" can be used to draw text to the bitmap buffer


Program code used (Breaks on A == 1000):

PRINT "HELLO"
WAIT 16
PRINT "WORLD"
WAIT 256
LABEL_0:
PRINT A=A+1
PRINT A=A+1
PRINT A=A+1
PRINT A=A+1
PRINT A=A+1
PRINT A=A+1
PRINT A=A+1
PRINT A=A+1
PRINT A=A+1
PRINT A=A+1
GOTO LABEL_0: