summaryrefslogtreecommitdiff
path: root/mmu.h
diff options
context:
space:
mode:
mmu.h: unused SEG_NULL
Diffstat (limited to 'mmu.h')
-rw-r--r--mmu.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/mmu.h b/mmu.h
index 71dd917..923ffde 100644
--- a/mmu.h
+++ b/mmu.h
@@ -41,9 +41,6 @@ struct segdesc {
uint base_31_24 : 8; // High bits of segment base address
};
-// Null segment
-#define SEG_NULL (struct segdesc){ 0,0,0,0,0,0,0,0,0,0,0,0,0 }
-
// Normal segment
#define SEG(type, base, lim, dpl) (struct segdesc) \
{ ((lim) >> 12) & 0xffff, (base) & 0xffff, ((base) >> 16) & 0xff, \