I finally am starting to rewrite Kube in 32bits, but I have a question. In real mode I could jump to a newly loaded program by doing:
jmp 0x3000:0x0000
How do I do the same in Pmode?
My kernel is loaded to linear 0x10000 by the bootloader. There are no other defined segments, just a big 4gigs with both code and data. So could I just issue a jmp 0x30000:0x00000 in pmode? And if I did a call there could I just issue a retf to return back to my kernel?
Thanks, and yes I am a total pmode newbie.
