Diff for /xmil/pccore.c between versions 1.26 and 1.30

version 1.26, 2004/08/12 20:09:42 version 1.30, 2004/08/13 04:08:33
Line 36  const OEMCHAR xmilversion[] = OEMTEXT(XM Line 36  const OEMCHAR xmilversion[] = OEMTEXT(XM
 #if defined(SUPPORT_BANKMEM)  #if defined(SUPPORT_BANKMEM)
         UINT8           mBANK[16][0x8000];          UINT8           mBANK[16][0x8000];
 #endif  #endif
         BYTE            *RAM0r;          UINT8           *RAM0r;
         BYTE            *RAM0w;          UINT8           *RAM0w;
   
   
 // ----  // ----
Line 173  void iptrace_out(void) { Line 173  void iptrace_out(void) {
 }  }
 #endif  #endif
   
 #if 0  
 UINT pccore_getraster(UINT *h) {  
   
         SINT32  work;  
         UINT    vl;  
   
         work = nevent_getwork(NEVENT_FRAMES);  
         vl = work / 250;  
         if (h) {  
                 *h = work - (vl * 250);  
         }  
         if (corestat.vsync) {  
                 vl += corestat.vl;  
         }  
         return(vl);  
 }  
 #endif  
   
 void neitem_disp(UINT id) {  void neitem_disp(UINT id) {
   
Line 208  void neitem_vsync(UINT id) { Line 191  void neitem_vsync(UINT id) {
 }  }
   
   
   // ----
   
 // #define      SINGLESTEPONLY  // #define      SINGLESTEPONLY
   
 void pccore_exec(BRESULT draw) {  void pccore_exec(BRESULT draw) {
Line 231  void pccore_exec(BRESULT draw) { Line 216  void pccore_exec(BRESULT draw) {
                 }                  }
 #else  #else
                 while(CPU_REMCLOCK > 0) {                  while(CPU_REMCLOCK > 0) {
                         TRACEOUT(("%.4x", Z80_PC));  
 #if defined(TRACE) && IPTRACE  #if defined(TRACE) && IPTRACE
                         treip[trpos & (IPTRACE - 1)] = Z80_PC;                          treip[trpos & (IPTRACE - 1)] = Z80_PC;
                         trpos++;                          trpos++;
Line 245  void pccore_exec(BRESULT draw) { Line 229  void pccore_exec(BRESULT draw) {
   
         scrnupdate();          scrnupdate();
         sound_sync();          sound_sync();
           fdc_callback();
 }  }
   

Removed from v.1.26  
changed lines
  Added in v.1.30


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