So instead of moping around about losing all that work, I'm going to consider it
an "easy purge" of badly written code. I'm talking about the Unix kernel for Casnix OS 3.
I'm approaching the kernel differently, so I'm gonna have some questions, such as:
I need to set the VGA text mode to 80x50, with the 8x8 font. I can do this in the boot loader,
Code: Select all
mov ax, 0x1112
xor bl, bl
int 0x10
Can someone post (or point me to) some code at kernel level that will allow me to switch modes? I know of modes.c, but I was hoping that there is an easier way (like with assembly instead of C).
Thank you.