G'day mates,
Tim here,
I have this problem after I have finished the FAT32 bootloader, but it says that INT13h is not supported. I even made a bootloader zip file so you can correct me somewhere.
Any suggestions?
Sincerely,
Tim.
Bootloader problem: INT13h not supported.
- Thunderbirds747
- Member
- Posts: 83
- Joined: Sat Sep 17, 2016 2:14 am
- Location: Moscow, Russia
Bootloader problem: INT13h not supported.
- Attachments
-
- bootloader.zip
- Bootloader Pack, v0.1
- (5.46 KiB) Downloaded 44 times
Coffee is not airplane fuel.
-
- Member
- Posts: 5587
- Joined: Mon Mar 25, 2013 7:01 pm
Re: Bootloader problem: INT13h not supported.
Code: Select all
mov ah, 0x41
mov bx, 0xAA55
int 0x13
Code: Select all
jnc No_MBR
- Thunderbirds747
- Member
- Posts: 83
- Joined: Sat Sep 17, 2016 2:14 am
- Location: Moscow, Russia
Re: Bootloader problem: INT13h not supported.
Actually, the MBR is fine. It might have to deal with the VBR.
- Attachments
-
- int13h.PNG (1.87 KiB) Viewed 2270 times
Coffee is not airplane fuel.
-
- Member
- Posts: 5587
- Joined: Mon Mar 25, 2013 7:01 pm
Re: Bootloader problem: INT13h not supported.
There's a difference between "it works" and "it works correctly".TimothyWilliams wrote:Actually, the MBR is fine.
The INT 0x13 extensions are not supported on floppy disk drives. (And even if they were, you can't fit a valid FAT32 filesystem on a floppy disk.)TimothyWilliams wrote:It might have to deal with the VBR.