From 58622a1de967235f125962d73f5daaf3e4b8d6ff Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sun, 6 Apr 2003 20:00:19 +0000 Subject: [PATCH] Clean up some old structure Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@882 --- src/cpu/cpu.cpp | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/src/cpu/cpu.cpp b/src/cpu/cpu.cpp index 2a44b651..9ccb2d47 100644 --- a/src/cpu/cpu.cpp +++ b/src/cpu/cpu.cpp @@ -23,35 +23,10 @@ #include "keyboard.h" #include "setup.h" -#pragma pack(1) -struct Descriptor { - Bit32u limit_0_15 :16; - Bit32u base_0_15 :16; - Bit32u base_16_23 :8; - Bit32u type :5; - Bit32u dpl :2; - Bit32u p :1; - Bit32u limit_16_19 :4; - Bit32u avl :1; - Bit32u r :1; - Bit32u d :1; - Bit32u g :1; - Bit32u base_24_31 :8; -}; -#pragma pack() - struct CPUBlock { - - struct { - PhysPt phys_base; - Bit32u base; - Bit16u limit; - } gdt,idt; }; - - Flag_Info flags; CPU_Regs cpu_regs;