summaryrefslogtreecommitdiff
path: root/Source/Kernel/MemoryManager/V86Segment.class.h
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-12-22 16:49:53 +0100
committerAlexis211 <alexis211@gmail.com>2009-12-22 16:49:53 +0100
commitcc1193087067c7e1105bd3d788520c034f5cf619 (patch)
tree33f31cf7459fe017c35a313c88e4bfcb6f00eb8a /Source/Kernel/MemoryManager/V86Segment.class.h
parentbfec696da052c8c9320773ca69927422efebe8c7 (diff)
downloadMelon-cc1193087067c7e1105bd3d788520c034f5cf619.tar.gz
Melon-cc1193087067c7e1105bd3d788520c034f5cf619.zip
Revert "[noncompiling commit] Started working on a segmented memory model"
This reverts commit bfec696da052c8c9320773ca69927422efebe8c7.
Diffstat (limited to 'Source/Kernel/MemoryManager/V86Segment.class.h')
-rw-r--r--Source/Kernel/MemoryManager/V86Segment.class.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Source/Kernel/MemoryManager/V86Segment.class.h b/Source/Kernel/MemoryManager/V86Segment.class.h
deleted file mode 100644
index 665506d..0000000
--- a/Source/Kernel/MemoryManager/V86Segment.class.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef DEF_V86SEGMENT_CLASS_H
-#define DEF_V86SEGMENT_CLASS_H
-
-#include <MemoryManager/Segment.proto.h>
-
-class V86Segment : public Segment {
- seg_map_t map(PageDirectory *pd);
- void unmap(PageDirectory* pd, seg_map_t *mapping);
- bool handleFault(u32int addr, seg_map_t *mapping) { return false; }
-};
-
-#endif