rjhelms / compe6502

Homebrew 6502 system
2 stars 0 forks source link

Implement conio color functions #25

Closed rjhelms closed 2 years ago

rjhelms commented 2 years ago
unsigned char __fastcall__ textcolor (unsigned char color);
/* Set the color for text output. The old color setting is returned. */

unsigned char __fastcall__ bgcolor (unsigned char color);
/* Set the color for the background. The old color setting is returned. */

Note that bgcolor sets the entire screen, so likely needs a new Pico command

rjhelms commented 2 years ago

Implemented at 76ccaaf515c094e4959965ebd8ea3d3e2648aa50