AgonConsole8 / agon-vdp

Official Firmware for the Agon Console8: ESP32 VDP
MIT License
38 stars 17 forks source link

allow use of characters 0-31 #111

Closed stevesims closed 9 months ago

stevesims commented 9 months ago

implements VDU 27,x which will send character x to the screen, allowing characters 0-31 and 127 to be written to screen (as per R.T.Russell’s BASIC for Windows)

add in VDU 23,0,&90,x as an alternative way to redefine characters - operates the same as VDU 23,x but additionally allows characters 0-31 to be redefined

also adds VDU 23,0,&91 to do a character-set reset. this will allow *FX 20 to be implemented, which performed this function on RISC OS

implements #80