--- np2/bios/Attic/bios02.c 2003/12/08 00:55:30 1.3 +++ np2/bios/Attic/bios02.c 2004/03/07 23:04:50 1.5 @@ -1,6 +1,5 @@ #include "compiler.h" #include "cpucore.h" -#include "memory.h" #include "pccore.h" #include "iocore.h" #include "bios.h" @@ -17,8 +16,8 @@ static const char msg4[] = " MEMORY"; static UINT16 textout(UINT16 ptr, const char *str) { while(*str) { - i286_membyte_write(0xa000, ptr, (BYTE)*str); - i286_membyte_write(0xa200, ptr, 0x43); + MEML_WRITE8(0xa000, ptr, (UINT8)*str); + MEML_WRITE8(0xa200, ptr, 0x43); str++; ptr += 2; }