--- np2/bios/bios1c.c 2004/02/19 11:32:11 1.7 +++ np2/bios/bios1c.c 2004/03/04 17:36:05 1.8 @@ -28,11 +28,11 @@ void bios0x1c(void) { switch(CPU_AH) { case 0x00: // get system timer calendar_get(buf); - i286_memstr_write(CPU_ES, CPU_BX, buf, 6); + MEML_WRITESTR(CPU_ES, CPU_BX, buf, 6); break; case 0x01: // put system timer - i286_memstr_read(CPU_ES, CPU_BX, buf, 6); + MEML_READSTR(CPU_ES, CPU_BX, buf, 6); mem[MEMB_MSW8] = buf[0]; calendar_set(buf); break;