|
|
| version 1.2, 2003/12/08 00:55:33 | version 1.4, 2004/02/20 08:32:23 |
|---|---|
| Line 1 | Line 1 |
| #include "compiler.h" | #include "compiler.h" |
| #include "cpucore.h" | #include "cpucore.h" |
| #include "memory.h" | |
| #include "lio.h" | #include "lio.h" |
| 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 25 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); | |
| } | |