mirror of
https://github.com/86Box/86Box.git
synced 2026-02-26 14:03:16 -07:00
Fix ROM filename casing
This commit is contained in:
@@ -204,7 +204,7 @@ machine_at_neat_ami_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/ami286/amic206.bin",
|
||||
ret = bios_load_linear("roms/machines/ami286/AMIC206.BIN",
|
||||
0x000f0000, 65536, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
@@ -404,8 +404,8 @@ machine_at_spc4216p_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_interleaved("roms/machines/spc4216p/7101.u8",
|
||||
"roms/machines/spc4216p/ac64.u10",
|
||||
ret = bios_load_interleaved("roms/machines/spc4216p/7101.U8",
|
||||
"roms/machines/spc4216p/AC64.U10",
|
||||
0x000f0000, 131072, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
@@ -662,7 +662,7 @@ machine_at_spc6033p_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/spc6033p/phoenix.bin",
|
||||
ret = bios_load_linear("roms/machines/spc6033p/phoenix.BIN",
|
||||
0x000f0000, 65536, 0x10000);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
@@ -503,7 +503,7 @@ machine_at_ali1429_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/ami486/ami486.bin",
|
||||
ret = bios_load_linear("roms/machines/ali1429/ami486.BIN",
|
||||
0x000f0000, 65536, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
@@ -1490,7 +1490,7 @@ machine_at_itoxstar_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/itoxstar/stara.rom",
|
||||
ret = bios_load_linear("roms/machines/itoxstar/STARA.ROM",
|
||||
0x000c0000, 262144, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
@@ -1548,7 +1548,7 @@ machine_at_arb1479_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/arb1479/1479a.rom",
|
||||
ret = bios_load_linear("roms/machines/arb1479/1479A.rom",
|
||||
0x000c0000, 262144, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
@@ -45,7 +45,7 @@ machine_at_p65up5_cpknd_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/p65up5/ndkn0218.awd",
|
||||
ret = bios_load_linear("roms/machines/p65up5/NDKN0218.AWD",
|
||||
0x000e0000, 131072, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
@@ -119,7 +119,7 @@ machine_at_fw6400gx_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/fw6400gx/fwgx1211.rom",
|
||||
ret = bios_load_linear("roms/machines/fw6400gx/FWGX1211.ROM",
|
||||
0x000c0000, 262144, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
@@ -316,7 +316,7 @@ machine_at_pat54pv_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/pat54pv/pat54pv.bin",
|
||||
ret = bios_load_linear("roms/machines/pat54pv/PAT54PV.bin",
|
||||
0x000f0000, 65536, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
@@ -179,11 +179,11 @@ machine_at_tc430hx_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear_combined2("roms/machines/tc430hx/1007dh0_.bio",
|
||||
"roms/machines/tc430hx/1007dh0_.bi1",
|
||||
"roms/machines/tc430hx/1007dh0_.bi2",
|
||||
"roms/machines/tc430hx/1007dh0_.bi3",
|
||||
"roms/machines/tc430hx/1007dh0_.rcv",
|
||||
ret = bios_load_linear_combined2("roms/machines/tc430hx/1007DH0_.BIO",
|
||||
"roms/machines/tc430hx/1007DH0_.BI1",
|
||||
"roms/machines/tc430hx/1007DH0_.BI2",
|
||||
"roms/machines/tc430hx/1007DH0_.BI3",
|
||||
"roms/machines/tc430hx/1007DH0_.RCV",
|
||||
0x3a000, 128);
|
||||
|
||||
if (bios_only || !ret)
|
||||
@@ -285,7 +285,7 @@ machine_at_p65up5_cp55t2d_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/p65up5/td5i0201.awd",
|
||||
ret = bios_load_linear("roms/machines/p65up5/TD5I0201.AWD",
|
||||
0x000e0000, 131072, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
@@ -586,7 +586,7 @@ machine_at_i430vx_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/430vx/55xwuq0e.bin",
|
||||
ret = bios_load_linear("roms/machines/430vx/55XWUQ0E.BIN",
|
||||
0x000e0000, 131072, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
@@ -131,8 +131,8 @@ machine_at_gw2katx_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear_combined("roms/machines/gw2katx/1003cn0t.bio",
|
||||
"roms/machines/gw2katx/1003cn0t.bi1", 0x20000, 128);
|
||||
ret = bios_load_linear_combined("roms/machines/gw2katx/1003CN0T.BIO",
|
||||
"roms/machines/gw2katx/1003CN0T.BI1", 0x20000, 128);
|
||||
|
||||
if (bios_only || !ret)
|
||||
return ret;
|
||||
|
||||
@@ -169,11 +169,11 @@ machine_at_vs440fx_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear_combined2("roms/machines/vs440fx/1018CS1_.bio",
|
||||
"roms/machines/vs440fx/1018CS1_.bi1",
|
||||
"roms/machines/vs440fx/1018CS1_.bi2",
|
||||
"roms/machines/vs440fx/1018CS1_.bi3",
|
||||
"roms/machines/vs440fx/1018CS1_.rcv",
|
||||
ret = bios_load_linear_combined2("roms/machines/vs440fx/1018CS1_.BIO",
|
||||
"roms/machines/vs440fx/1018CS1_.BI1",
|
||||
"roms/machines/vs440fx/1018CS1_.BI2",
|
||||
"roms/machines/vs440fx/1018CS1_.BI3",
|
||||
"roms/machines/vs440fx/1018CS1_.RCV",
|
||||
0x3a000, 128);
|
||||
|
||||
if (bios_only || !ret)
|
||||
@@ -203,11 +203,11 @@ machine_at_ap440fx_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear_combined2("roms/machines/ap440fx/1011CT1_.bio",
|
||||
"roms/machines/ap440fx/1011CT1_.bi1",
|
||||
"roms/machines/ap440fx/1011CT1_.bi2",
|
||||
"roms/machines/ap440fx/1011CT1_.bi3",
|
||||
"roms/machines/ap440fx/1011CT1_.rcv",
|
||||
ret = bios_load_linear_combined2("roms/machines/ap440fx/1011CT1_.BIO",
|
||||
"roms/machines/ap440fx/1011CT1_.BI1",
|
||||
"roms/machines/ap440fx/1011CT1_.BI2",
|
||||
"roms/machines/ap440fx/1011CT1_.BI3",
|
||||
"roms/machines/ap440fx/1011CT1_.RCV",
|
||||
0x3a000, 128);
|
||||
|
||||
if (bios_only || !ret)
|
||||
@@ -315,7 +315,7 @@ machine_at_p65up5_cp6nd_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/p65up5/nd6i0218.awd",
|
||||
ret = bios_load_linear("roms/machines/p65up5/ND6I0218.AWD",
|
||||
0x000e0000, 131072, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
@@ -488,7 +488,7 @@ ps1_setup(int model)
|
||||
ps1_read, NULL, NULL, ps1_write, NULL, NULL, ps);
|
||||
|
||||
rom_init(&ps->high_rom,
|
||||
"roms/machines/ibmps1_2121/fc0000.bin",
|
||||
"roms/machines/ibmps1_2121/FC0000.BIN",
|
||||
0xfc0000, 0x40000, 0x3ffff, 0, MEM_MAPPING_EXTERNAL);
|
||||
|
||||
/* Initialize the video controller. */
|
||||
@@ -546,7 +546,7 @@ machine_ps1_m2121_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/ibmps1_2121/fc0000.bin",
|
||||
ret = bios_load_linear("roms/machines/ibmps1_2121/FC0000.BIN",
|
||||
0x000e0000, 131072, 0x20000);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
@@ -330,7 +330,7 @@ machine_xt_pc4i_init(const machine_t *model)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = bios_load_linear("roms/machines/pc4i/NCR_PC4i_BIOSROM_1985.bin",
|
||||
ret = bios_load_linear("roms/machines/pc4i/NCR_PC4i_BIOSROM_1985.BIN",
|
||||
0x000fc000, 16384, 0);
|
||||
|
||||
if (bios_only || !ret)
|
||||
|
||||
Reference in New Issue
Block a user