A poorly written OS for the x86 arch. (WIP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
eOS/bootloader/equ/bios.asm

11 lines
197 B

; EQUs (lazy variables) for BIOS stuff
BIOS_TTY_INT equ 0x10
BIOS_TTY_MODE equ 0x0e
; Disk reading
BIOS_DISK_INT equ 0x13
BIOS_DISK_READ equ 0x02
; Physical Memory
BIOS_PMEM_INT equ 0x15