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