--- np2/bios/bios.c 2003/12/10 13:52:57 1.13 +++ np2/bios/bios.c 2004/01/05 12:54:56 1.22 @@ -1,7 +1,6 @@ #include "compiler.h" #include "dosio.h" #include "cpucore.h" -#include "memory.h" #include "pccore.h" #include "iocore.h" #include "bios.h" @@ -15,8 +14,12 @@ #include "keytable.res" #include "itfrom.res" #include "startup.res" +#include "biosboot.res" +#include "sxsibios.res" +#define BIOS_SIMULATE + BOOL biosrom = FALSE; static const char file_biosrom[] = "bios.rom"; @@ -82,7 +85,7 @@ static void bios_reinitbyswitch(void) { } gdcs.textdisp |= GDCSCRN_EXT; - if ((pc.model >= PCMODEL_VX) && (usesound & 0x7e)) { + if (((pc.model & PCMODELMASK) >= PCMODEL_VX) && (usesound & 0x7e)) { iocore_out8(0x188, 0x27); iocore_out8(0x18a, 0x3f); } @@ -133,6 +136,7 @@ void bios_init(void) { fh = file_open_rb(path); if (fh != FILEH_INVALID) { if (file_read(fh, mem + 0x0e8000, 0x18000) == 0x18000) { + TRACEOUT(("load bios.rom")); biosrom = TRUE; } file_close(fh); @@ -141,6 +145,7 @@ void bios_init(void) { CopyMemory(mem + 0x0e8000, nosyscode, sizeof(nosyscode)); } +#if defined(BIOS_SIMULATE) // BIOS hookのアドレス変更 for (i=0; i<0x20; i++) { STOREINTELWORD(mem + 0xfd868 + i*2, biosoffset[i]); @@ -167,31 +172,14 @@ void bios_init(void) { CopyMemory(mem + 0xfd800 + 0x1ab7, fdfmt2hd, sizeof(fdfmt2hd)); CopyMemory(mem + 0xfd800 + 0x1adf, fdfmt2dd, sizeof(fdfmt2dd)); CopyMemory(mem + 0xfd800 + 0x1980, fdfmt144, sizeof(fdfmt144)); // ver0.31 + CopyMemory(mem + 0xfd800 + 0x2400, biosboot, sizeof(biosboot)); // ver0.73 SETBIOSMEM16(0xfffe8, 0xcb90); SETBIOSMEM16(0xfffec, 0xcb90); mem[0xffff0] = 0xea; STOREINTELDWORD(mem + 0xffff1, 0xfd800000); -#if 1 - CopyMemory(mem + ITF_ADRS, itfrom, sizeof(itfrom)); - mem[ITF_ADRS + 0x7ff0] = 0xea; - STOREINTELDWORD(mem + ITF_ADRS + 0x7ff1, 0xf8000000); -#if 0 -fh = file_create("itf.rom"); -if (fh != FILEH_INVALID) { - file_write(fh, itfrom, sizeof(itfrom)); - file_close(fh); -} -#endif -#else - fh = file_open_c("itf.rom"); - if (fh != FILEH_INVALID) { - file_read(fh, &mem[ITF_ADRS], 0x8000); - file_close(fh); - } -#endif - if (!biosrom) { + if ((!biosrom) && (!(pc.model & PCMODEL_EPSON))) { CopyMemory(mem + 0xe8dd8, neccheck, 0x25); pos = LOADINTELWORD(itfrom + 2); CopyMemory(mem + 0xf538e, itfrom + pos, 0x27); @@ -208,6 +196,29 @@ if (fh != FILEH_INVALID) { CopyMemory(mem + 0x0fde00, keytable[0], 0x300); bios0x09_init(); + + CopyMemory(mem + ITF_ADRS, itfrom, sizeof(itfrom)); + mem[ITF_ADRS + 0x7ff0] = 0xea; + STOREINTELDWORD(mem + ITF_ADRS + 0x7ff1, 0xf8000000); + if (pc.model & PCMODEL_EPSON) { + mem[ITF_ADRS + 0x7ff1] = 0x04; + } + else if ((pc.model & PCMODELMASK) == PCMODEL_VM) { + mem[ITF_ADRS + 0x7ff1] = 0x08; + } +#else + fh = file_open_c("itf.rom"); + if (fh != FILEH_INVALID) { + file_read(fh, &mem[ITF_ADRS], 0x8000); + file_close(fh); + } + extmem_init(np2cfg.EXTMEM); +#endif + + CopyMemory(mem + 0xd0000, sxsibios, sizeof(sxsibios)); + + CopyMemory(mem + 0x1c0000, mem + 0x1f8000, 0x08000); + CopyMemory(mem + 0x1e8000, mem + 0x0e8000, 0x10000); } static void bios_boot(void) { @@ -229,6 +240,7 @@ static void bios_boot(void) { else { CPU_SP = GETBIOSMEM16(0x00404); CPU_SS = GETBIOSMEM16(0x00406); + TRACEOUT(("Protect Disable... SS:SP = %.4x:%.4x", CPU_SS, CPU_SP)); } } @@ -344,8 +356,12 @@ UINT MEMCALL biosfunc(UINT32 adrs) { return(1); case 0xfd802: // ブート - bios_reinitbyswitch(); // ver0.27 - bios_vectorset(); // ver0.29 + bios_reinitbyswitch(); + bios_vectorset(); +#if 1 // ver0.73 + CPU_CS = 0xfd80; + CPU_IP = 0x2400; +#else bootseg = bootstrapload(); CPU_STI; CPU_CS = (bootseg != 0)?bootseg:0xe800; @@ -353,6 +369,7 @@ UINT MEMCALL biosfunc(UINT32 adrs) { CPU_SS = 0x0030; CPU_SP = 0x00e6; CPU_IP = 0x0000; +#endif return(1); case 0xfffe8: // ブートストラップロード @@ -362,8 +379,6 @@ UINT MEMCALL biosfunc(UINT32 adrs) { CPU_STI; CPU_CS = bootseg; CPU_IP = 0x0000; - CPU_SS = 0x0030; - CPU_SP = 0x00e6; return(1); } return(0);