summaryrefslogtreecommitdiff
path: root/src/README
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-05-18 15:33:37 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-05-18 15:33:37 +0200
commit67ee9510770674a4ef236168176bf85e0775ab7e (patch)
tree4cef26a9fc4e5416aeef6a334c8c3de7d65bcd62 /src/README
parenta91dc0e8b48359716fd214f503deb71a0210252d (diff)
downloadabaos-67ee9510770674a4ef236168176bf85e0775ab7e.tar.gz
abaos-67ee9510770674a4ef236168176bf85e0775ab7e.tar.bz2
added port types which are check when calling port read/write functions
Diffstat (limited to 'src/README')
-rw-r--r--src/README3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/README b/src/README
index bfd0795..ad6ca2a 100644
--- a/src/README
+++ b/src/README
@@ -1,7 +1,7 @@
* boot.bin - boot sector (stage 1 and 2, total 2k), offset 0x7c00
* boot.asm - the main boot sector code using:
* kernel.bin - linked kernel with fix start offset 0x8400
- * gdt.asm - the early GDT
+ * gdt.asm - the early GDT, flat memory model, no protection
* stage1_functions.asm - real mode functions of the bootloader
* stage2_functions.asm - protected mode primitive VGA routines
* switch_mode.asm - early GTD loading and switching from real to protected mode
@@ -14,6 +14,7 @@ kernel utility routines
* vga.c - VGA basic output routines for early kernel output
* serial.c - serial output to COM1 (only sequential ASCII chars, no terminal)
* port.c, port.asm - I/O ports
+* interrupts.c, interrups.asm - interrupt handlers
C library routines
* string.c