Fixed fuckup.

git-svn-id: https://spexeah.com:8443/svn/Asuro@33 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron 2017-05-16 22:48:58 +00:00
parent aa0a81306e
commit 4add561061
17 changed files with 11 additions and 0 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -2,6 +2,9 @@ unit bios_data_area;
interface
uses
types;
type
TBDA = bitpacked record
COM1 : uint16;

View File

@ -3,6 +3,7 @@ unit kernel;
interface
uses
types,
multiboot,
util,
gdt,

View File

@ -5,6 +5,7 @@ unit keyboard;
interface
uses
types,
util;
function get_scancode() : uint8;

View File

@ -2,6 +2,9 @@ unit multiboot;
interface
uses
types;
const
KERNEL_STACKSIZE = $4000;
MULTIBOOT_BOOTLOADER_MAGIC = $2BADB002;

View File

@ -4,6 +4,9 @@ unit util;
interface
uses
types;
function hi(b : uint8) : uint8;
function lo(b : uint8) : uint8;
function switchendian(b : uint8) : uint8;