diff options
author | Frans Kaashoek <[email protected]> | 2018-08-30 13:14:01 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2018-08-30 13:14:01 -0400 |
commit | 210a0f0b30eb1af49b6ed42339b1fcc8582ba653 (patch) | |
tree | a24d804200e1a800ed5c0dcb540ea3936bd9f14d /asm.h | |
parent | b2ca8e3e23e583991b4d8285be6569fb0dcf2495 (diff) | |
download | xv6-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.h | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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 |