|
|
| version 1.1, 2003/10/16 17:58:19 | version 1.2, 2003/11/29 00:36:00 |
|---|---|
| Line 17 static const char msg4[] = " MEMORY"; | Line 17 static const char msg4[] = " MEMORY"; |
| static UINT16 textout(UINT16 ptr, const char *str) { | static UINT16 textout(UINT16 ptr, const char *str) { |
| while(*str) { | while(*str) { |
| i286_membyte_write(0xa000, ptr, *str); | i286_membyte_write(0xa000, ptr, (BYTE)*str); |
| i286_membyte_write(0xa200, ptr, 0x43); | i286_membyte_write(0xa200, ptr, 0x43); |
| str++; | str++; |
| ptr += 2; | ptr += 2; |