Diff for /np2/io/cgrom.c between versions 1.4 and 1.7

version 1.4, 2003/12/08 00:55:32 version 1.7, 2003/12/21 16:05:25
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
 #include        "memory.h"  #include        "cpucore.h"
 #include        "pccore.h"  #include        "pccore.h"
 #include        "iocore.h"  #include        "iocore.h"
 #include        "font.h"  #include        "font.h"
Line 7 Line 7
   
 static void cgwindowset(CGROM cr) {  static void cgwindowset(CGROM cr) {
   
           UINT    low;
           UINT    high;
         int             code;          int             code;
   
         cgwindow.low = 0x7fff0;  
         cgwindow.writable &= ~1;          cgwindow.writable &= ~1;
           low = 0x7fff0;
         if (grcg.chip >= 2) {          if (grcg.chip >= 2) {
                 if (!(cr->code & 0xff00)) {                  if (!(cr->code & 0xff00)) {
                         cgwindow.high = 0x80000 + (cr->code << 4);                          high = 0x80000 + (cr->code << 4);
                 }                  }
                 else {                  else {
                         code = cr->code & 0x007f;                          code = cr->code & 0x007f;
                         cgwindow.high = (cr->code & 0x7f7f) << 4;                          high = (cr->code & 0x7f7f) << 4;
                         if ((code >= 0x56) && (code < 0x58)) {                          if ((code >= 0x56) && (code < 0x58)) {
                                 cgwindow.writable |= 1;                                  cgwindow.writable |= 1;
                                 cgwindow.high += cr->lr;                                  high += cr->lr;
                         }                          }
                         else if (((code >= 0x0c) && (code < 0x10)) ||                          else if (((code >= 0x0c) && (code < 0x10)) ||
                                 ((code >= 0x58) && (code < 0x60))) {                                  ((code >= 0x58) && (code < 0x60))) {
                                 cgwindow.high += cr->lr;                                  high += cr->lr;
                         }                          }
                         else if ((code < 0x08) || (code >= 0x10)) {                          else if ((code < 0x08) || (code >= 0x10)) {
                                 cgwindow.low = cgwindow.high;                                  low = high;
                                 cgwindow.high += 0x800;                                  high += 0x800;
                         }                          }
                 }                  }
         }          }
         else {          else {
                 cgwindow.high = cgwindow.low;                  high = low;
         }          }
   #if !defined(CGWND_FONTPTR)
           cgwindow.low = low;
           cgwindow.high = high;
   #else
           cgwindow.fontlow = fontrom + low;
           cgwindow.fonthigh = fontrom + high;
   #endif
 }  }
   
   
Line 124  void cgrom_reset(void) { Line 133  void cgrom_reset(void) {
   
         cgw = &cgwindow;          cgw = &cgwindow;
         ZeroMemory(cgw, sizeof(cgrom));          ZeroMemory(cgw, sizeof(cgrom));
   #if !defined(CGWND_FONTPTR)
         cgw->low = 0x7fff0;          cgw->low = 0x7fff0;
         cgw->high = 0x7fff0;          cgw->high = 0x7fff0;
   #else
           cgw->fontlow = fontrom + 0x7fff0;
           cgw->fonthigh = fontrom + 0x7fff0;
   #endif
         cgw->writable = 0;          cgw->writable = 0;
 }  }
   

Removed from v.1.4  
changed lines
  Added in v.1.7


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