Conversation
Notices
-
So on x86 you can bootstrap your kernel by using bios interrupt 13h to read the disk in a generic way. it doesn't appear there's a way to do that in 64-bit mode?
- Machismo repeated this.
-
Looks like you have to use EFI function for that.
-
@romin I found assembler code to boot an x64 machine directly in to 64-bit mode but it doesn't have BIOS so you can't use int13h to load a kernel from disk so I was trying to figure out how to do that. and it looks like you have to create an EFI application basically to access the disk, there doesn't seem to be a way around it.
-
@Moon what are you doing