2019-09-29 10:52:00 +02:00
|
|
|
%define segment 0x00100
|
|
|
|
%define self (0x7C00-(segment<<4)) ; 1 sector
|
2019-09-15 19:26:09 +02:00
|
|
|
|
2019-10-28 11:38:18 +01:00
|
|
|
cpu 8086
|
2019-09-14 15:17:44 +02:00
|
|
|
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
|
|
|
|
2019-09-23 23:19:12 +02: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:
|
2019-09-14 15:17:44 +02:00
|
|
|
cli
|
2019-09-29 10:52:00 +02:00
|
|
|
jmp segment:main
|
2019-09-14 15:17:44 +02:00
|
|
|
|
2019-09-29 10:52:00 +02:00
|
|
|
main:
|
2019-09-24 23:14:29 +02:00
|
|
|
; Stack grows down from 64k
|
2019-09-29 10:52:00 +02:00
|
|
|
mov ax, cs
|
2019-09-14 15:17:44 +02:00
|
|
|
mov ss, ax
|
2019-10-28 11:49:42 +01:00
|
|
|
mov sp, BDOS
|
2019-09-14 15:17:44 +02:00
|
|
|
mov ds, ax
|
|
|
|
mov es, ax
|
|
|
|
|
|
|
|
mov [fdc.drv], dl ; save drive number in fd
|
|
|
|
|
2019-10-28 11:38:18 +01:00
|
|
|
mov ax, 1
|
|
|
|
mov cx, 8
|
|
|
|
mov dx, 0
|
2019-10-28 11:49:42 +01:00
|
|
|
mov bx, BDOS
|
2019-09-08 03:04:01 +02:00
|
|
|
|
|
|
|
.loop:
|
|
|
|
push ax
|
2019-04-20 23:02:35 +02:00
|
|
|
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]
|
|
|
|
|
2019-09-08 03:04:01 +02:00
|
|
|
; 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
|
2019-09-08 03:04:01 +02:00
|
|
|
jc error
|
2019-03-31 22:53:14 +02:00
|
|
|
|
2019-09-08 03:04:01 +02:00
|
|
|
pop dx
|
|
|
|
pop cx
|
|
|
|
pop ax
|
2019-03-29 23:32:50 +01:00
|
|
|
|
2019-09-08 03:04:01 +02:00
|
|
|
; count up for next sector
|
|
|
|
add bx, 0x0200
|
2019-10-28 11:38:18 +01:00
|
|
|
add ax, 1
|
|
|
|
adc dx, 0
|
2019-03-31 15:08:39 +02:00
|
|
|
|
2019-09-08 03:04:01 +02:00
|
|
|
loop .loop
|
2019-10-28 11:38:18 +01:00
|
|
|
|
|
|
|
mov dl, [fdc.drv]
|
|
|
|
|
2019-10-28 11:49:42 +01:00
|
|
|
; jump into bios cold boot entry point
|
|
|
|
jmp segment:BIOS
|
2019-05-19 22:07:08 +02:00
|
|
|
|
|
|
|
error:
|
2019-09-08 03:04:01 +02:00
|
|
|
mov ax, bp
|
2019-03-31 15:08:39 +02:00
|
|
|
mov ah, 0x0e
|
2019-09-08 03:04:01 +02:00
|
|
|
mov bx, 7
|
2019-03-31 15:08:39 +02:00
|
|
|
int 0x10
|
2019-09-08 03:04:01 +02:00
|
|
|
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
|