Anyone got a way of hiding the cursor when using GotoXY/Write statements in TP3 on CP/M?
In this case, specifically on the RC2014.
I don't think there's anything in the BIOS that helps. Small detail, but it's bugging me.
Anyone got a way of hiding the cursor when using GotoXY/Write statements in TP3 on CP/M?
In this case, specifically on the RC2014.
I don't think there's anything in the BIOS that helps. Small detail, but it's bugging me.
@guidol70 Yep. Think I might need both ANSI and VT52ish for eventual goal, but going to start from there.
This didn't behave well the last time I tried similar in TP. So time for a small test program first.
Thank you.
@kianryan you need something like this CLS-ClearScreen command (from BASIC) in TP:
CLS$=CHR$(27)+"[2J"+CHR$(27)+"[H"
PRINT CLS$
for vt52-codes take a look here:
http://toshyp.atari.org/en/VT_52_terminal.html#Cur_on
@kianryan you can use ASCII escape codes
https://gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797
Such as:
ESC?25l
Make cursor invisible
And:
ESC?25h
Make cursor visible