chore: add usefull links

This commit is contained in:
d0p1 🏳️‍⚧️ 2024-07-14 22:39:48 +02:00
parent a3e4aabe92
commit f47382bd56
5 changed files with 21 additions and 0 deletions

View file

@ -2,3 +2,6 @@
com_probe:
ret
com_irq:
iret

View file

@ -1,4 +1,8 @@
;; File: floppy.inc
;;
;; Usefull links:
;; - <https://wiki.osdev.org/Floppy_Disk_Controller>
;; - <datasheet at http://www.osdever.net/documents/82077AA_FloppyControllerDatasheet.pdf>
CMOS_FLOPPY_TYPE = 0x10
@ -30,6 +34,8 @@ floppy_probe:
@@:
ret
floppy_irq:
iret
szMsgFloppy0Found db "floppy0: Found", 0
szMsgFloppy1Found db "floppy1: Found", 0

View file

@ -7,3 +7,6 @@ NE2K_IOBASE = 0x300
ne2k_probe:
ret
ne2k_irq:
iret

View file

@ -1 +1,9 @@
;; File: fat.inc
FAT_SECTOR_SIZE = 512
FAT_MDIR_SIZE = 32
struc FatBootSector {
.jump db 3 dup(?)
.banner db 8 dup(?)
}

View file

@ -76,3 +76,4 @@ vfs_init:
ret
pRootFS dd 0