From 4d7db67896514eaa26def4fc01ccc2f7f781e883 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 19 Aug 2002 10:45:43 +0000 Subject: [PATCH] Clean up and removal of setsegment_16 Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@154 --- include/cpu.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/include/cpu.h b/include/cpu.h index 8a753ec5..17127132 100644 --- a/include/cpu.h +++ b/include/cpu.h @@ -29,12 +29,8 @@ typedef Bitu (CPU_Decoder)(Bitu count); extern CPU_Decoder * cpudecoder; extern Bit32u cpu_cycles; - -extern Bit32u hoever; - //CPU Stuff void SetCPU16bit(); -void SetSegment_16(Bit32u seg,Bit16u val); //Types of Flag changing instructions @@ -80,20 +76,11 @@ bool get_SF(void); bool get_OF(void); bool get_PF(void); -Bit8u get_Flags8(void); - - - - #define LoadCF flags.cf=get_CF(); #define LoadZF flags.zf=get_ZF(); #define LoadSF flags.sf=get_SF(); #define LoadOF flags.of=get_OF(); -//The opcode handlers -void FPU_ESC0_Normal(Bitu rm); -void FPU_ESC0_EA(Bitu func,PhysPt ea); - #endif