Diff for /np2/x11/np2.c between versions 1.14 and 1.19

version 1.14, 2004/03/23 15:16:43 version 1.19, 2004/06/17 14:36:33
Line 38 Line 38
 #include "toolwin.h"  #include "toolwin.h"
 #include "viewer.h"  #include "viewer.h"
 #include "debugwin.h"  #include "debugwin.h"
   #include "skbdwin.h"
   
 #include "commng.h"  #include "commng.h"
 #include "joymng.h"  #include "joymng.h"
Line 73  NP2OSCFG np2oscfg = { Line 74  NP2OSCFG np2oscfg = {
         { 0, 0, 0, 0 },         /* JOY1BTN */          { 0, 0, 0, 0 },         /* JOY1BTN */
   
         { COMPORT_MIDI, 0, 0x3e, 19200, "", "", "", "" },       /* mpu */          { COMPORT_MIDI, 0, 0x3e, 19200, "", "", "", "" },       /* mpu */
           {
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com1 */
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com2 */
                   { COMPORT_NONE, 0, 0x3e, 19200, "", "", "", "" },/* com3 */
           },
   
         0,                      /* confirm */          0,                      /* confirm */
   
Line 81  NP2OSCFG np2oscfg = { Line 87  NP2OSCFG np2oscfg = {
         0,                      /* statsave */          0,                      /* statsave */
         0,                      /* toolwin */          0,                      /* toolwin */
         0,                      /* keydisp */          0,                      /* keydisp */
           0,                      /* softkbd */
         0,                      /* hostdrv_write */          0,                      /* hostdrv_write */
         0,                      /* jastsnd */          0,                      /* jastsnd */
         0,                      /* I286SAVE */          0,                      /* I286SAVE */
Line 274  framereset(UINT cnt) Line 281  framereset(UINT cnt)
         framecnt = 0;          framecnt = 0;
         scrnmng_dispclock();          scrnmng_dispclock();
         kdispwin_draw((BYTE)cnt);          kdispwin_draw((BYTE)cnt);
           skbdwin_process();
           debugwin_process();
         toolwin_draw((BYTE)cnt);          toolwin_draw((BYTE)cnt);
         viewer_allreload(FALSE);          viewer_allreload(FALSE);
         debugwin_process();  
         if (np2oscfg.DISPCLK & 3) {          if (np2oscfg.DISPCLK & 3) {
                 if (sysmng_workclockrenewal()) {                  if (sysmng_workclockrenewal()) {
                         sysmng_updatecaption(3);                          sysmng_updatecaption(3);
Line 363  mainloop(void *p) Line 371  mainloop(void *p)
         return TRUE;          return TRUE;
 }  }
   
 #if defined(__GNUC__) && (defined(i386) || defined(__i386__))  #if defined(GCC_CPU_ARCH_IA32)
 int mmxflag;  int mmxflag;
   
 int  int
Line 394  havemmx(void) Line 402  havemmx(void)
   
         return rv;          return rv;
 }  }
 #endif  #endif /* GCC_CPU_ARCH_IA32 */

Removed from v.1.14  
changed lines
  Added in v.1.19


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