diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-07-08 17:15:01 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-07-08 17:15:01 +0200 |
| commit | bf67de78c26c6f6e585f11899591f61da5a2c3d8 (patch) | |
| tree | 6c5b51d3746aad55d2aef5c15f3771518244dc37 /boot/GDT.asm | |
| parent | 900781f1985bb814aa7992022aead985fc967611 (diff) | |
added some comments and cleaned up the .asm files
Diffstat (limited to 'boot/GDT.asm')
| -rw-r--r-- | boot/GDT.asm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/boot/GDT.asm b/boot/GDT.asm index 27514de..df76210 100644 --- a/boot/GDT.asm +++ b/boot/GDT.asm @@ -1,3 +1,19 @@ +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;; Miguel's FoolOS Helper Functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; +; Global Descriptor Table +; we have the null descriptor and a code and data block for a start +; +; 0x80 code segment +; 0x10 data segment +; +; this file contains pure data +; +; +; +; + gdt_start: gdt_null: ;null descriptor (2 x 4 bytes) |
