HI,
Glad to see that you have been working (successfully) on your USB/UHCI code. Congrats.
Anyway, I was looking over your boot code, especially the MBR and have a few comments, if you don't mind.
Code: Select all
test byte[part1.boot], 0x80
jnz .boot1
test byte[part2.boot], 0x80
jnz .boot2
test byte[part3.boot], 0x80
jnz .boot3
test byte[part4.boot], 0x80
jnz .boot4
mov si, _no_active_partition
call print
jmp $
.boot1:
mov si, part1
jmp load_boot_sector
.boot2:
mov si, part2
jmp load_boot_sector
can easily, and more to the point, give you more room in the MBR, to this:
Code: Select all
mov si, part1
mov cx,4
some_loop:
test byte[si], 0x80
jnz load_boot_sector
add si,16
loop some_loop
mov si, _no_active_partition
call print
jmp $
You have quite a few (unnecessary) jmp's in there. Set the 'SI' value, then check the boot indicator.
Anyway, that isn't really important, other than to give you more space in the 512 - 4*16 - 2 bytes that you have.
The reason?
Code: Select all
mov ah, 0x42
mov dl, [bootdisk]
mov si, dap
int 0x13
You don't check for the capability of this service before you use this service.
Now, this can be debatable. How much backward compatibility do you support? Most any BIOS, including emulated ones, will support this service. But are you sure about it?
Anyway, I had a few minutes and was curious about your code and started at the beginning. I always appreciate comments about my stuff, so I thought I would repay the favor.
Ben
http://www.fysnet.net/osdesign_book_series.htm