Fixed fuckup.
git-svn-id: https://spexeah.com:8443/svn/Asuro@33 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
@ -2,6 +2,9 @@ unit bios_data_area;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
types;
|
||||
|
||||
type
|
||||
TBDA = bitpacked record
|
||||
COM1 : uint16;
|
||||
|
@ -3,6 +3,7 @@ unit kernel;
|
||||
interface
|
||||
|
||||
uses
|
||||
types,
|
||||
multiboot,
|
||||
util,
|
||||
gdt,
|
||||
|
@ -5,6 +5,7 @@ unit keyboard;
|
||||
interface
|
||||
|
||||
uses
|
||||
types,
|
||||
util;
|
||||
|
||||
function get_scancode() : uint8;
|
||||
|
@ -2,6 +2,9 @@ unit multiboot;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
types;
|
||||
|
||||
const
|
||||
KERNEL_STACKSIZE = $4000;
|
||||
MULTIBOOT_BOOTLOADER_MAGIC = $2BADB002;
|
||||
|
@ -4,6 +4,9 @@ unit util;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
types;
|
||||
|
||||
function hi(b : uint8) : uint8;
|
||||
function lo(b : uint8) : uint8;
|
||||
function switchendian(b : uint8) : uint8;
|
||||
|
Reference in New Issue
Block a user