Hi
I am using lcc-win on Windows 98. I'm writing a simple c console app, and
I need to set the background color to blue. Here's the code I've got at
the moment:
_asm ( "movb $2, %ah\n"
"movb $7, %dl\n"
"int $0x21\n"
);
But this doesn't work.
Does anyone have any suggestions?
Thanks.
I am using lcc-win on Windows 98. I'm writing a simple c console app, and
I need to set the background color to blue. Here's the code I've got at
the moment:
_asm ( "movb $2, %ah\n"
"movb $7, %dl\n"
"int $0x21\n"
);
But this doesn't work.
Does anyone have any suggestions?
Thanks.
Comment