|
|
| version 1.3, 2003/12/08 00:55:30 | version 1.5, 2004/03/07 23:04:50 |
|---|---|
| Line 1 | Line 1 |
| #include "compiler.h" | #include "compiler.h" |
| #include "cpucore.h" | #include "cpucore.h" |
| #include "memory.h" | |
| #include "pccore.h" | #include "pccore.h" |
| #include "iocore.h" | #include "iocore.h" |
| #include "bios.h" | #include "bios.h" |
| Line 17 static const char msg4[] = " MEMORY"; | Line 16 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, (BYTE)*str); | MEML_WRITE8(0xa000, ptr, (UINT8)*str); |
| i286_membyte_write(0xa200, ptr, 0x43); | MEML_WRITE8(0xa200, ptr, 0x43); |
| str++; | str++; |
| ptr += 2; | ptr += 2; |
| } | } |