From b8912d999f918bd755699099a339d193eb593e8b Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sat, 11 Jul 2009 19:26:29 -0700 Subject: [PATCH] mmu.h: unused SEG_NULL --- mmu.h | 3 --- 1 file changed, 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, \