Working on a bootsector
Re:Working on a bootsector
VESA in PMode is hard...and you should NOT worrie about that till your OS is done.
If you want PMode, look at my boot.asm in FritzOS:
FritzOS Development Page
If you want PMode, look at my boot.asm in FritzOS:
FritzOS Development Page
Re:Working on a bootsector
the accually switch is only 3 lines. its easally found in Tom's boot sector.
Re:Working on a bootsector
Hey... if only I had been smart enough to veiw that in wordpad before ;)
how do I get to finishing my OS without VESA?
how do I get to finishing my OS without VESA?
Re:Working on a bootsector
..
Last edited by Perica on Sun Dec 03, 2006 8:42 pm, edited 1 time in total.
Re:Working on a bootsector
hmm, well, i ment setting the pmode bit....not all the other crap that needs to be done........
Re:Working on a bootsector
setting pmode bit
mov eax,cr0
inc eax
mov cr0, eax
done!!!
of course without the other 'CRAP' it will not work!!
mov eax,cr0
inc eax
mov cr0, eax
done!!!
of course without the other 'CRAP' it will not work!!
Re:Working on a bootsector
Nevermind this post, Ive decided to stea-Borrow somone elses bootsecter and get to the kernel instead.
Re:Working on a bootsector
I mean't I'm using someone elses bootsector, and I'm writing my own kernel.
Re:Working on a bootsector
took it from someone elses steal right here:
http://www.free2code.net/tutorials/print_friendly/36
http://www.free2code.net/tutorials/print_friendly/36