- must use #ifdef instead of #if

This commit is contained in:
Bryce Denney 2001-09-24 12:09:45 +00:00
parent 141da24c74
commit 39aa03d622
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ bx_devices_c::~bx_devices_c(void)
void
bx_devices_c::init(BX_MEM_C *newmem)
{
BX_DEBUG(("Init $Id: devices.cc,v 1.16 2001-09-14 14:55:59 instinc Exp $"));
BX_DEBUG(("Init $Id: devices.cc,v 1.17 2001-09-24 12:09:45 bdenney Exp $"));
mem = newmem;
// Start with all IO port address registered to unmapped handler
// MUST be called first
@ -160,7 +160,7 @@ bx_devices_c::init(BX_MEM_C *newmem)
pit = & bx_pit;
pit->init(this);
#ifdef BX_USE_SLOWDOWN_TIMER
#if BX_USE_SLOWDOWN_TIMER
bx_slowdown_timer.init();
#endif