--- np2/bios/bios09.c 2003/10/16 17:58:19 1.1.1.1 +++ np2/bios/bios09.c 2004/03/10 23:01:07 1.4 @@ -1,6 +1,5 @@ #include "compiler.h" -#include "i286.h" -#include "memory.h" +#include "cpucore.h" #include "pccore.h" #include "iocore.h" #include "bios.h" @@ -87,10 +86,10 @@ void bios0x09(void) { } else { if (key == 0x60) { - i286_interrupt(6); + CPU_INTERRUPT(6, -1); } else if (key == 0x61) { - i286_interrupt(5); + CPU_INTERRUPT(5, -1); } else if (key < 0x70) { code = mem[base + key - 0x0c] << 8;