1
0
Fork 0

Clean up some old structure

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@882
This commit is contained in:
Sjoerd van der Berg 2003-04-06 20:00:19 +00:00
parent b0cb5d2b0b
commit 58622a1de9

View file

@ -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;