diff options
Diffstat (limited to 'include/asm')
-rw-r--r-- | include/asm/boot.h | 9 | ||||
-rw-r--r-- | include/asm/interrupt.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/asm/boot.h b/include/asm/boot.h new file mode 100644 index 0000000..690f698 --- /dev/null +++ b/include/asm/boot.h @@ -0,0 +1,9 @@ +#define KERNEL_START 0x500 +#define KERNEL_BLOCKS 24 +#define DISK_SECTORS_PER_TRACK 18 + +#define CODE_SEL 0x08 +#define DATA_SEL 0x10 +#define STACK_SEL 0x18 +#define VRAM_SEL 0x20 +#define BIOS_SEL 0x28 diff --git a/include/asm/interrupt.h b/include/asm/interrupt.h new file mode 100644 index 0000000..c6924a7 --- /dev/null +++ b/include/asm/interrupt.h @@ -0,0 +1 @@ +#define CUR_BLINK 50 |