summaryrefslogtreecommitdiff
path: root/doc/internal
diff options
context:
space:
mode:
authorBenji Dial <benji3.141@gmail.com>2020-05-24 21:55:12 -0400
committerBenji Dial <benji3.141@gmail.com>2020-05-24 21:55:12 -0400
commit021ea9b271f2144f7b16ae41a9236292dea7897d (patch)
tree77bae3af854f9ff1fb0298ae1f71b1395a392cc1 /doc/internal
parent02f14113cbf14c6f842fb43ecbc68d0c851ef3b0 (diff)
downloadportland-os-021ea9b271f2144f7b16ae41a9236292dea7897d.tar.gz
basic fs type stuff, fat16, removing stack segment and using data segment
Diffstat (limited to 'doc/internal')
-rw-r--r--doc/internal/gdt.txt3
-rw-r--r--doc/internal/mem.txt9
2 files changed, 5 insertions, 7 deletions
diff --git a/doc/internal/gdt.txt b/doc/internal/gdt.txt
index 6f5e1f4..0a8b5ea 100644
--- a/doc/internal/gdt.txt
+++ b/doc/internal/gdt.txt
@@ -1,3 +1,2 @@
0x08: 0x0000.0000 - 0x0007.ffff (code)
-0x10: 0x0000.0000 - 0x000f.ffff (data)
-0x18: 0x0003.8000 - 0x0003.ffff (stack) \ No newline at end of file
+0x10: 0x0000.0000 - 0x000f.ffff (data) \ No newline at end of file
diff --git a/doc/internal/mem.txt b/doc/internal/mem.txt
index cc5d301..ea96d13 100644
--- a/doc/internal/mem.txt
+++ b/doc/internal/mem.txt
@@ -1,8 +1,7 @@
-0x0001.0000 - 0x0002.5fff: unused
-0x0002.6000 - 0x0002.bfff: fat
+0x0001.0000 - 0x0001.ffff: unused
+0x0002.0000 - 0x0002.7fff: fat
+0x0002.8000 - 0x0002.bfff: unused
0x0002.c000 - 0x0002.ffff: file buffers
0x0003.0000 - 0x0003.7fff: kernel
0x0003.8000 - 0x0003.ffff: stack
-0x0004.0000 - 0x0007.ffff: unused
-0x0008.0000 - 0x000d.9fff: ramd
-0x000d.a000 - 0xffff.ffff: unused \ No newline at end of file
+0x0004.0000 - 0x000f.ffff: unused \ No newline at end of file