06-05-2022, 01:14 PM
Thanks, I didn't realise it used a specific chip for its crt functions
The below code works to hide the cursor, if avoiding rom calls
The CRT datasheet can be found at:
https://datasheetspdf.com/datasheet/R6545.html
The below code works to hide the cursor, if avoiding rom calls
Code:
void vdu_cursor_hide() {
__asm
ld b, #0xff
ld c, #0x0d
ld a, #14
out (#0x0c),a
out (c),b
ld a, #15
out (#0x0c),a
out (c),b
__endasm;
}The CRT datasheet can be found at:
https://datasheetspdf.com/datasheet/R6545.html
Support me on Patreon: https://www.patreon.com/Under4Mhz
