|
Umm... if you are going to print bold lines you need to figure out how to set your console into a formatted text mode. A regular console is not actually capable of just displaying bolded text via a printf... what you need to do is call the appropriat ASM code to initialize your console in the correct mode... I forget the name of the mode, but the interrupt I believe is 13h, just look up the AX/AH value. Once you have initialized the console I believe the default memory location where you start to write text is 0xA000 or 0xB000 (been a long time since I have done this).
|