rdos/boot/fat.asm

126 lines
2.1 KiB
NASM
Raw Normal View History

%define segment 0x00100
%define self (0x7C00-(segment<<4)) ; 1 sector
%define prog (RAM-0x1000) ; 4K at the end for OS
2019-09-15 19:26:09 +02:00
cpu 8086
org self
2019-09-15 19:26:09 +02:00
jmp short init
times (0x0B - ($-$$)) db 0
2019-05-19 22:07:08 +02:00
fdc:
2019-03-27 23:05:00 +01:00
.ss:
dw 0x200 ; sector size
.sc:
2019-03-31 22:53:14 +02:00
db 2 ; sectors per cluster
2019-03-27 23:05:00 +01:00
.rsc:
2019-03-31 22:53:14 +02:00
dw 1 ; reserved sector count
2019-03-27 23:05:00 +01:00
.fn:
2019-03-31 22:53:14 +02:00
db 2 ; number of file allocation tables
2019-03-27 23:05:00 +01:00
.rde:
2019-03-31 22:53:14 +02:00
dw 0x70 ; number of root directory entries
2019-03-28 00:06:13 +01:00
.ts:
dw 720 ; total number of sectors
2019-03-27 23:05:00 +01:00
.mi: ; medium identifier
2019-03-25 09:51:37 +01:00
db 0xFD ; 5.25-inch Double sided, 40 tracks per side, 9 sectors per track (360 KB)
2019-03-27 23:05:00 +01:00
.sf: ; sectors per fat
2019-03-31 22:53:14 +02:00
dw 2
2019-03-25 09:51:37 +01:00
.spt:
dw 9 ; sectors per track
2019-03-27 23:05:00 +01:00
.nos:
dw 2 ; number of sides (heads)
.po:
dd 0 ; partition offset (in LBA blocks)
2019-03-28 00:06:13 +01:00
.lrgts:
2019-05-07 19:50:07 +02:00
dd 0
2019-03-27 23:05:00 +01:00
.drv:
2019-03-26 21:46:40 +01:00
db 0 ; drive number
db 0
2019-03-27 23:05:00 +01:00
db 0x29 ; efdc signature
.vid:
dd 0 ; volume id
.vlabel:
db "2B"
times (54 - ($-$$)) db " "
.fstype:
db "FAT12"
times (62 - ($-$$)) db " "
2019-03-25 09:51:37 +01:00
; mformat keeps writing until here
; if we place init earlier, code gets overwritten
times (62 - ($-$$)) nop
2019-09-15 19:26:09 +02:00
init:
cli
jmp segment:main
main:
; Stack grows down from 64k
mov ax, cs
mov ss, ax
mov sp, prog
mov ds, ax
mov es, ax
mov [fdc.drv], dl ; save drive number in fd
mov ax, 1
mov cx, 8
mov dx, 0
mov bx, prog
.loop:
push ax
push cx
push dx
2019-09-18 00:41:39 +02:00
; add partition offset (required for HDD)
add ax, [fdc.po]
adc dx, [fdc.po+2]
; calculate CHS data
div word [cs:fdc.spt] ; ax:temp = (lba / spt)
inc dx ; dx:sector = (lba % spt) + 1
mov cl, dl ; sector number
xor dx, dx
div word [cs:fdc.nos] ; ax:cylinder = (tmp / heads)
; dx:head = (tmp % heads)
mov ch, al ; cylinder number
mov dh, dl ; head number
mov dl, [cs:fdc.drv] ; driver number
mov ax, 0x0201 ; ah=0x02 al=0x01
int 0x13
2019-09-15 19:26:09 +02:00
mov bp, 0x3331
jc error
2019-03-31 22:53:14 +02:00
pop dx
pop cx
pop ax
2019-03-29 23:32:50 +01:00
; count up for next sector
add bx, 0x0200
add ax, 1
adc dx, 0
loop .loop
mov dl, [fdc.drv]
; jump into kernel
jmp segment:(prog+0x0800)
2019-05-19 22:07:08 +02:00
error:
mov ax, bp
mov ah, 0x0e
mov bx, 7
int 0x10
mov al, 0x21
int 0x10
xor ax, ax
int 0x16
int 0x19
times (0x1FE - ($-$$)) db 0
2019-03-29 22:40:44 +01:00
2019-03-25 09:51:37 +01:00
dw 0xAA55