Diff for /np2/lio/gput1.c between versions 1.3 and 1.4

version 1.3, 2003/12/12 01:04:40 version 1.4, 2004/02/20 08:32:23
Line 4 Line 4
   
   
 typedef struct {  typedef struct {
         SINT16  x;          BYTE    x[2];
         SINT16  y;          BYTE    y[2];
         UINT16  off;          BYTE    off[2];
         UINT16  seg;          BYTE    seg[2];
         UINT16  leng;          BYTE    leng[2];
         BYTE    mode;          BYTE    mode;
         BYTE    colsw;          BYTE    colsw;
         BYTE    fgcolor;          BYTE    fgcolor;
Line 24  BYTE lio_gput1(void) { Line 24  BYTE lio_gput1(void) {
         return(0);          return(0);
 }  }
   
   
   // ----
   
   typedef struct {
           BYTE    x[2];
           BYTE    y[2];
           BYTE    chr[2];
           BYTE    mode;
           BYTE    colorsw;
           BYTE    fg;
           BYTE    bg;
   } LIOGPUT2;
   
   
   REG8 lio_gput2(void) {
   
           LIOGPUT2        dat;
   
           i286_memstr_read(CPU_DS, CPU_BX, &dat, sizeof(dat));
           
   
   
   
           return(0);
   }
   

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


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