1
0
Fork 0

Remove core selection defines

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1566
This commit is contained in:
Sjoerd van der Berg 2004-01-11 12:52:57 +00:00
parent 5919036d42
commit 9048b0f14b

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: cpu.cpp,v 1.50 2004-01-11 12:29:03 harekiet Exp $ */
/* $Id: cpu.cpp,v 1.51 2004-01-11 12:52:57 harekiet Exp $ */
#include <assert.h>
#include "dosbox.h"
@ -54,18 +54,6 @@ void CPU_Core_Full_Init(void);
void CPU_Core_Normal_Init(void);
void CPU_Core_Dyn_X86_Init(void);
#if (C_DYNAMIC_X86)
#define startcpu_core CPU_Core_Dyn_X86_Run
#else
#define startcpu_core CPU_Core_Normal_Run
//#define startcpu_core CPU_Core_Full_Run
#endif
void CPU_Push16(Bitu value) {
reg_esp=(reg_esp&~cpu.stack.mask)|(reg_esp-2)&cpu.stack.mask;
mem_writew(SegPhys(ss) + (reg_esp & cpu.stack.mask) ,value);