From cfec9cb464403752bbfe58e5497fa278571cbbc1 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 23 Aug 2004 12:19:52 +0000 Subject: [PATCH] added core_simple Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1921 --- include/cpu.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/cpu.h b/include/cpu.h index cc015857..9fd9bfe3 100644 --- a/include/cpu.h +++ b/include/cpu.h @@ -35,6 +35,7 @@ extern CPU_Decoder * cpudecoder; Bits CPU_Core_Normal_Run(void); Bits CPU_Core_Normal_Trap_Run(void); +Bits CPU_Core_Simple_Run(void); Bits CPU_Core_Full_Run(void); Bits CPU_Core_Dyn_X86_Run(void); @@ -415,5 +416,6 @@ INLINE void CPU_SetFlagsw(Bitu word) { CPU_SetFlags(word,mask); }; + #endif