Hi,
I am trying to build a simple small Z80 computer based on Grant Searle's SBC.
For keyboard/screen I specifically want to use a serial interface with a terminal client, so I don't have to get/use a separate monitor and keyboard.
From the programs running on the Z80 I can use colors and cursor-control via ANSI escape commands which are supported by terminal clients like PuTTy.
But I also want to be able to use (simple) graphics like drawing a graph.
I have been googling for days now to find ANSI standards for this and support in existing terminal clients, but haven't found an existing protocol/standard yet supported by any of these clients...
Of course I can program my own terminal client, but it seems like an overkill for 99% of all ANSI escape commands that I will also have to program then myself :-(
So my question is: Are there existing windows terminal clients that already support some simple ANSI escape commands for setting/clearing pixels in a terminal screen?
I am looking for full ANSI support with additional Escape commands for things like setPixel(x,y,color)