Tagged Questions
0
votes
2answers
638 views
How To Print ASCII Extended Characters Using a Const Char*?
I have a function to print characters on the screen that is like this:
void print(int colour, int y, int x, const char *string)
{
volatile char *video=(volatile char*)0xB8000 + y*160 + x*2;
...