summaryrefslogtreecommitdiff
path: root/asm.h
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2018-08-30 13:14:01 -0400
committerFrans Kaashoek <[email protected]>2018-08-30 13:14:01 -0400
commit210a0f0b30eb1af49b6ed42339b1fcc8582ba653 (patch)
treea24d804200e1a800ed5c0dcb540ea3936bd9f14d /asm.h
parentb2ca8e3e23e583991b4d8285be6569fb0dcf2495 (diff)
downloadxv6-labs-210a0f0b30eb1af49b6ed42339b1fcc8582ba653.tar.gz
xv6-labs-210a0f0b30eb1af49b6ed42339b1fcc8582ba653.tar.bz2
xv6-labs-210a0f0b30eb1af49b6ed42339b1fcc8582ba653.zip
Remove unused flags (thanks Wolfgang Keller)
Diffstat (limited to 'asm.h')
-rw-r--r--asm.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/asm.h b/asm.h
index 68210d7..b8a7353 100644
--- a/asm.h
+++ b/asm.h
@@ -14,8 +14,5 @@
(0xC0 | (((lim) >> 28) & 0xf)), (((base) >> 24) & 0xff)
#define STA_X 0x8 // Executable segment
-#define STA_E 0x4 // Expand down (non-executable segments)
-#define STA_C 0x4 // Conforming code segment (executable only)
#define STA_W 0x2 // Writeable (non-executable segments)
#define STA_R 0x2 // Readable (executable segments)
-#define STA_A 0x1 // Accessed