Diff for /np2/pccore.c between versions 1.27 and 1.29

version 1.27, 2003/12/08 00:55:30 version 1.29, 2003/12/12 01:04:39
Line 4 Line 4
 #include        "sysmng.h"  #include        "sysmng.h"
 #include        "timemng.h"  #include        "timemng.h"
 #include        "cpucore.h"  #include        "cpucore.h"
 #include        "memory.h"  
 #include        "np2ver.h"  #include        "np2ver.h"
 #include        "pccore.h"  #include        "pccore.h"
 #include        "iocore.h"  #include        "iocore.h"
Line 75  static const BYTE msw_default[8] = Line 74  static const BYTE msw_default[8] =
         BOOL    drawframe;          BOOL    drawframe;
         UINT    drawcount = 0;          UINT    drawcount = 0;
   
         BYTE    mem[0x200000];  
   
   
 // ---------------------------------------------------------------------------  // ---------------------------------------------------------------------------
   
Line 546  void pccore_exec(BOOL draw) { Line 543  void pccore_exec(BOOL draw) {
                         CPU_CS = 0xf000;                          CPU_CS = 0xf000;
                         CS_BASE = 0xf0000;                          CS_BASE = 0xf0000;
                         CPU_IP = 0xfff0;                          CPU_IP = 0xfff0;
 #ifdef CPU386                                                                                   // defineを変えてね  #if defined(CPUCORE_IA32)
                         CPU_DX = 0x0300;                          CPU_DX = 0x0300;
 #endif  #endif
                         CPU_CLEARPREFETCH();                          CPU_CLEARPREFETCH();

Removed from v.1.27  
changed lines
  Added in v.1.29


RetroPC.NET-CVS <cvs@retropc.net>