nor86/bootsect.asm

300 lines
5.1 KiB
NASM
Raw Normal View History

2021-06-28 18:33:23 +00:00
cpu 8086
org 0x7c00
jmp short _code
nop
; 1440K floppy
; BPB
oemidentifier db "nor86 "
byterpersector dw 512
sectorspercluster db 1
reservedsectors dw 1
fats db 2
rootdirentries dw 224
totalsectors dw 2880
mediadescription db 0xf0
sectorsperfat dw 9
sectorspertrack dw 18
heads dw 2
hiddensectors dd 0
totalsectorslarge dd 0
; EBPB
2021-06-28 19:58:11 +00:00
drivenumber db 0 ; useless on-disk, used as a variable
2021-06-28 18:33:23 +00:00
reserved db 0 ; winnt flags
signature db 0x29 ; mkdosfs uses this, dunno how 0x28 differs
serial dd 0
volumelabel db "nor86 boot "
fstype db "FAT12 "
_code:
jmp 0:_start
_start:
2021-06-28 19:58:11 +00:00
cld
; Set up segments
mov ax, cs
mov ds, ax
mov es, ax
cli
mov ss, ax
mov sp, 0x7c00
sti
; Save bootdrive
mov [drivenumber], dl
2021-06-30 17:35:07 +00:00
calc_constants:
2021-06-28 19:58:11 +00:00
; Disk organization:
; Reserved sectors (MBR)
; FAT1
; FAT2
; Root dir
; → Root dir starts at LBA reservedsectors + fats*sectorsperfat
xor ah, ah
mov al, [fats]
mul word [sectorsperfat]
add ax, [reservedsectors]
mov [rootdir], ax
2021-06-30 17:35:07 +00:00
; Data area comes after root dir, so we need to add the size of
; the root dir in sectors
; One root dir entry is 32 bytes, and one sector has 512 bytes
; Therefore 512 / 32 = 16 entries correspond to a sector
; However, we can't just do a shift, since we need to round up
; For integers, ceil(x/y) = floor((x+y-1)/y)
mov ax, [rootdirentries]
add ax, 15
shr ax, 1
shr ax, 1
shr ax, 1
shr ax, 1
mov [rootdirsectors], ax
fat:
; FAT1 (the main one) follows right after bootsector(s)
mov ax, [reservedsectors]
call chs
; TODO: handle possible crossing of track boundary
mov ax, [sectorsperfat]
mov ah, 2
mov dl, [drivenumber]
mov bx, 0x8000
int 0x13
root_dir:
mov ax, [rootdir]
2021-06-28 19:58:11 +00:00
call chs
2021-06-30 17:35:07 +00:00
; TODO: handle possible crossing of track boundary
mov ax, [rootdirsectors]
2021-06-28 19:58:11 +00:00
mov ah, 2
mov dl, [drivenumber]
mov bx, 0x500
int 0x13
2021-06-30 17:35:07 +00:00
search_root:
mov bx, [rootdirentries]
shl bx, 1
shl bx, 1
shl bx, 1
shl bx, 1
shl bx, 1
2021-06-30 17:35:07 +00:00
mov byte [bx + 0x500], 0
2021-06-28 19:58:11 +00:00
mov si, 0x500
.entry:
cmp byte [si], 0
je .end
test byte [si + 11], 0x08 + 0x10
jz .isfile
add si, 32
jmp .entry
.isfile:
2021-06-30 17:35:07 +00:00
mov cx, 11
mov bx, kernel_name
2021-06-28 19:58:11 +00:00
2021-06-30 17:35:07 +00:00
.compare:
2021-06-28 19:58:11 +00:00
lodsb
2021-06-30 17:35:07 +00:00
cmp al, [bx]
jne .nomatch
inc bx
loop .compare
2021-06-28 19:58:11 +00:00
2021-06-30 17:35:07 +00:00
jmp found
2021-06-28 19:58:11 +00:00
2021-06-30 17:35:07 +00:00
.nomatch:
; Each entry is 32 bytes long
; During each iteration of the compare loop, si is
; incremented and cx is decremented
; At the top of the loop, si + cx = entry_start + 11, but
; when we jump here si has been incremented by one already
; while cx is still the same
; Therefore, si + cx is one more, so add extra - 1 here
add si, 32 - 11 - 1
add si, cx
2021-06-28 19:58:11 +00:00
jmp .entry
.end:
2021-06-28 18:33:23 +00:00
2021-06-30 17:35:07 +00:00
notfound:
; TODO: Better error messages
mov ax, 0x0e00 + '?'
int 0x10
2021-06-28 18:33:23 +00:00
hang:
hlt
jmp hang
2021-06-30 17:35:07 +00:00
found:
; SI points to 11 bytes after the start of the entry, so adjust all
; offsets
; TODO: Handle zero-length files
mov ax, [si - 11 + 26] ; First cluster
push ax
; Load OS at the start of the memory
mov bx, 0x500
push bx
2021-06-30 17:42:03 +00:00
.tosector:
2021-06-30 17:35:07 +00:00
; Adjust the cluster number to account for first two
; "clusters" in the FAT being used for metadata
sub ax, 2
; Scale by number of sectors per cluster
xor bx, bx
mov bl, [sectorspercluster]
mul word bx
; Offset by number of non-data sectors before data area
add ax, [rootdir]
add ax, [rootdirsectors]
; Load sectors
pop bx
xor cx, cx
mov cl, [sectorspercluster]
mov dl, [drivenumber]
.loop:
push ax
push cx
call chs
mov ah, 2
mov al, 1
int 0x13
pop cx
pop ax
add bx, 512
inc ax
loop .loop
.next:
pop ax
; Multiply by 1.5 to get offset into the table
; This rounds down, which is what we want in order to get
; the first byte of the address
mov si, ax
shl si, 1
add si, ax
shr si, 1
; Load the entry from FAT
mov dx, [si + 0x8000]
; Two clusters, 0xABC and 0xXYZ, are stored as
; BC ZA XY
; ^ where we start reading on even cluster numbers
; ^^^^^ loading word → 0xZABC
; ^ where we start reading on odd cluster numbers
; ^^^^^ loading word: 0xXYZA
test ax, 1
jnz .odd
.even:
and dx, 0x0fff
jmp .check_cluster
.odd:
shr dx, 1
shr dx, 1
shr dx, 1
shr dx, 1
.check_cluster:
mov ax, dx
; End of chain
cmp ax, 0xFF8
jg execute_kernel
push ax
push bx
jmp .tosector
execute_kernel:
mov dl, [drivenumber]
jmp 0:0x500
2021-06-28 19:58:11 +00:00
chs:
push ax
push bx
; Save drive number
mov bl, dl
xor dx, dx
; cylinder (track) - head - sector
; cylinder = LBA / sectorspertrack / heads
; head = LBA / sectorspertrack % heads
; sector = LBA % sectorspertrack + 1
div word [sectorspertrack]
; ax = LBA / sectorspertrack
; dx = LBA % sectorspertrack
; sector
mov cl, dl
inc cl
xor dx, dx
div word [heads]
; ax = LBA / sectorspertrack / heads
; dx = LBA / sectorspertrack % heads
; head
mov dh, dl
; cylinder (track)
mov ch, al
;shr ax, 1
;shr ax, 1
;and al, 0xC0
;or cl, al
; Restore drive number
mov dl, bl
pop bx
pop ax
ret
%include "hexprint.inc"
2021-06-30 17:35:07 +00:00
kernel_name: db "KERNEL BIN"
2021-06-28 18:33:23 +00:00
times 510-($-$$) db 0
db 0x55, 0xaa
2021-06-28 19:58:11 +00:00
_end:
rootdir equ _end
2021-06-30 17:35:07 +00:00
rootdirsectors equ _end + 2