Page 2 of 2

Re:drawing text in gfx mode

Posted: Mon Mar 20, 2006 5:52 am
by Solar
I voted for "I don't even have a kernel" because the one vote looked so lonely and FirstStep hasn't left it's ZIP archive in over a year. 8)

Re:drawing text in gfx mode

Posted: Mon Mar 20, 2006 7:13 am
by distantvoices
@solar: shame on you. *rofl* How dare you admitting that. ;-))

Oh... Shame on me either. I've done just five hours of os-deving in the last three weeks. university, you know.

Re:drawing text in gfx mode

Posted: Mon Mar 20, 2006 7:19 am
by bubach
i've done like five hours of os deving in the last five months.. :'(

Re:drawing text in gfx mode

Posted: Mon Mar 20, 2006 7:26 am
by distantvoices
It's weekends, you know? during the week, I'm too tired to do reasonable stuff. I ressort to cooking and well, doing housework and sno...];->

Re:drawing text in gfx mode

Posted: Mon Mar 20, 2006 7:51 am
by RetainSoftware
geez after i voted he add's the null modem option ;D

my bad luck

Re:drawing text in gfx mode

Posted: Mon Mar 20, 2006 7:59 am
by Solar
Well, I'm busily churning out code for the PDCLib. That's OS dev'ing, of a sort... ;)

Re:drawing text in gfx mode

Posted: Mon Mar 20, 2006 8:03 am
by Pype.Clicker
RetainSoft wrote: my bad luck
actually added null modem _because_ of your post :P
now that i'm working with embedded linux on routing programmable PCI card, i have to admit that null modem console is handy as soon as you have multiple PCs for OSDev'ing.

probably something i've underestimated in Clicker ... that would be interesting to see whether "struct console / SOSprint" pair can be adjusted to work with null modem rather than raw display :P

Re:drawing text in gfx mode

Posted: Mon Mar 20, 2006 8:38 am
by paulbarker
Writing a single, portable output function is a good idea. My kernel currently supports ouputting to a VGA screen, serial port, I/O port 0xE9 on bochs and a strange serial port on the sys/161 mips emulator. All with a platform independent printk() function calling a simple output() function.

Even if you never plan to port your kernel, choice of output mode is good.