2020-04-15 11:14:58 +03:00
|
|
|
org 0x7c00
|
2019-05-30 16:59:25 +03:00
|
|
|
bits 16
|
|
|
|
|
2020-01-22 06:12:55 +03:00
|
|
|
start:
|
2020-09-06 08:25:34 +03:00
|
|
|
jmp .skip_bpb ; Workaround for some BIOSes that require this stub
|
|
|
|
nop
|
|
|
|
|
|
|
|
; Some BIOSes will do a funny and decide to overwrite bytes of code in
|
|
|
|
; the section where a FAT BPB would be, potentially overwriting
|
|
|
|
; bootsector code.
|
|
|
|
; Avoid that by filling the BPB area with 0s
|
|
|
|
times 87 db 0
|
|
|
|
|
|
|
|
.skip_bpb:
|
2020-01-22 06:12:55 +03:00
|
|
|
cli
|
2020-01-22 07:02:12 +03:00
|
|
|
cld
|
2020-01-22 06:12:55 +03:00
|
|
|
jmp 0x0000:.initialise_cs
|
|
|
|
.initialise_cs:
|
|
|
|
xor ax, ax
|
|
|
|
mov ds, ax
|
|
|
|
mov es, ax
|
|
|
|
mov ss, ax
|
2020-09-25 23:42:01 +03:00
|
|
|
mov sp, 0x7c00
|
2020-01-22 06:12:55 +03:00
|
|
|
sti
|
2020-08-29 21:02:16 +03:00
|
|
|
|
2020-08-26 23:45:32 +03:00
|
|
|
; Some BIOSes don't pass the correct boot drive number,
|
|
|
|
; so we need to do the job
|
|
|
|
.check_drive:
|
2020-08-29 21:02:16 +03:00
|
|
|
; Limine isn't made for floppy disks, these are dead anyways.
|
2020-08-26 23:45:32 +03:00
|
|
|
; So if the value the BIOS passed is <0x80, just assume it has passed
|
|
|
|
; an incorrect value
|
|
|
|
test dl, 0x80
|
|
|
|
jz .fix_drive
|
|
|
|
|
|
|
|
; Drive numbers from 0x80..0x8f should be valid
|
|
|
|
test dl, 0x70
|
|
|
|
jz .continue
|
|
|
|
|
|
|
|
.fix_drive:
|
|
|
|
; Try to fix up the mess the BIOS have done
|
|
|
|
mov dl, 0x80
|
2020-08-29 21:02:16 +03:00
|
|
|
|
2020-08-26 23:45:32 +03:00
|
|
|
.continue:
|
2020-09-06 08:25:34 +03:00
|
|
|
; Make sure int 13h extensions are supported
|
|
|
|
mov ah, 0x41
|
|
|
|
mov bx, 0x55aa
|
|
|
|
int 0x13
|
2020-10-15 12:35:49 +03:00
|
|
|
jc err
|
2020-09-06 08:25:34 +03:00
|
|
|
cmp bx, 0xaa55
|
2020-10-15 12:35:49 +03:00
|
|
|
jne err
|
2020-09-06 08:25:34 +03:00
|
|
|
|
|
|
|
; If int 13h extensions are supported, then we are definitely running on
|
|
|
|
; a 386+. We have no idea whether the upper 16 bits of esp are cleared, so
|
|
|
|
; make sure that is the case now.
|
2020-09-25 23:42:01 +03:00
|
|
|
mov esp, 0x7c00
|
2019-05-30 16:59:25 +03:00
|
|
|
|
2020-12-06 18:43:38 +03:00
|
|
|
push 0x7000
|
2020-09-06 04:35:32 +03:00
|
|
|
pop es
|
2020-12-06 18:43:38 +03:00
|
|
|
mov di, stage2_locs
|
|
|
|
mov eax, dword [di]
|
|
|
|
mov ebp, dword [di+4]
|
2020-09-06 08:25:34 +03:00
|
|
|
xor bx, bx
|
2020-12-06 18:43:38 +03:00
|
|
|
xor ecx, ecx
|
|
|
|
mov cx, word [di-4]
|
|
|
|
call read_sectors
|
|
|
|
jc err
|
|
|
|
mov eax, dword [di+8]
|
|
|
|
mov ebp, dword [di+12]
|
|
|
|
add bx, cx
|
|
|
|
mov cx, word [di-2]
|
2020-01-22 06:12:55 +03:00
|
|
|
call read_sectors
|
2020-10-15 12:35:49 +03:00
|
|
|
jc err
|
2019-05-30 17:25:23 +03:00
|
|
|
|
2020-12-06 18:43:38 +03:00
|
|
|
lgdt [gdt]
|
2019-05-30 17:25:23 +03:00
|
|
|
|
2020-01-22 06:12:55 +03:00
|
|
|
cli
|
|
|
|
mov eax, cr0
|
2020-10-15 12:35:49 +03:00
|
|
|
bts ax, 0
|
2020-01-22 06:12:55 +03:00
|
|
|
mov cr0, eax
|
2019-05-30 17:25:23 +03:00
|
|
|
|
2020-12-06 18:43:38 +03:00
|
|
|
jmp 0x08:vector
|
2020-10-15 12:35:49 +03:00
|
|
|
|
|
|
|
err:
|
|
|
|
hlt
|
|
|
|
jmp err
|
|
|
|
|
|
|
|
times 0xda-($-$$) db 0
|
|
|
|
times 6 db 0
|
|
|
|
|
|
|
|
; Includes
|
|
|
|
|
2021-02-25 03:24:54 +03:00
|
|
|
%include 'disk.asm'
|
|
|
|
%include '../gdt.asm'
|
2019-05-30 17:25:23 +03:00
|
|
|
|
2020-11-05 03:04:49 +03:00
|
|
|
bits 32
|
|
|
|
vector:
|
2020-12-06 18:43:38 +03:00
|
|
|
mov eax, 0x10
|
|
|
|
mov ds, ax
|
|
|
|
mov es, ax
|
|
|
|
mov fs, ax
|
|
|
|
mov gs, ax
|
|
|
|
mov ss, ax
|
|
|
|
|
|
|
|
and edx, 0xff
|
|
|
|
|
2020-11-05 03:04:49 +03:00
|
|
|
push 0
|
|
|
|
|
|
|
|
push edx
|
|
|
|
|
|
|
|
push stage2.size
|
|
|
|
push (stage2 - decompressor) + 0x70000
|
|
|
|
|
|
|
|
call 0x70000
|
|
|
|
|
2020-12-06 18:43:38 +03:00
|
|
|
times 0x1a4-($-$$) db 0
|
|
|
|
stage2_size_a: dw 0
|
|
|
|
stage2_size_b: dw 0
|
|
|
|
stage2_locs:
|
|
|
|
stage2_loc_a: dq 0
|
|
|
|
stage2_loc_b: dq 0
|
2020-10-15 12:35:49 +03:00
|
|
|
|
|
|
|
times 0x1b8-($-$$) db 0
|
|
|
|
times 510-($-$$) db 0
|
|
|
|
dw 0xaa55
|
|
|
|
|
|
|
|
; ********************* Stage 2 *********************
|
2020-04-15 11:14:58 +03:00
|
|
|
|
2020-10-15 12:35:49 +03:00
|
|
|
decompressor:
|
2021-03-08 02:50:23 +03:00
|
|
|
incbin '../../build/decompressor/decompressor.bin'
|
2020-09-06 04:35:32 +03:00
|
|
|
|
|
|
|
align 16
|
|
|
|
stage2:
|
2021-03-08 02:50:23 +03:00
|
|
|
incbin '../../build/stage23-bios/stage2.bin.gz'
|
2020-09-06 04:35:32 +03:00
|
|
|
.size: equ $ - stage2
|