machine: Rename hitman back to gw2kte

This commit is contained in:
RichardG867
2024-12-17 11:11:42 -03:00
parent 11b588c6bb
commit 5df15ee724
3 changed files with 9 additions and 13 deletions

View File

@@ -722,7 +722,7 @@ extern int machine_at_pb680_init(const machine_t *);
extern int machine_at_pb810_init(const machine_t *); extern int machine_at_pb810_init(const machine_t *);
extern int machine_at_mb520n_init(const machine_t *); extern int machine_at_mb520n_init(const machine_t *);
extern int machine_at_i430vx_init(const machine_t *); extern int machine_at_i430vx_init(const machine_t *);
extern int machine_at_hitman_init(const machine_t *); extern int machine_at_gw2kte_init(const machine_t *);
extern int machine_at_ma23c_init(const machine_t *); extern int machine_at_ma23c_init(const machine_t *);
extern int machine_at_nupro592_init(const machine_t *); extern int machine_at_nupro592_init(const machine_t *);

View File

@@ -825,15 +825,15 @@ machine_at_i430vx_init(const machine_t *model)
} }
int int
machine_at_hitman_init(const machine_t *model) machine_at_gw2kte_init(const machine_t *model)
{ {
int ret; int ret;
ret = bios_load_linear_combined2("roms/machines/hitman/1008CY1T.BIO", ret = bios_load_linear_combined2("roms/machines/gw2kte/1008CY1T.BIO",
"roms/machines/hitman/1008CY1T.BI1", "roms/machines/gw2kte/1008CY1T.BI1",
"roms/machines/hitman/1008CY1T.BI2", "roms/machines/gw2kte/1008CY1T.BI2",
"roms/machines/hitman/1008CY1T.BI3", "roms/machines/gw2kte/1008CY1T.BI3",
"roms/machines/hitman/1008CY1T.RCV", "roms/machines/gw2kte/1008CY1T.RCV",
0x3a000, 128); 0x3a000, 128);
if (bios_only || !ret) if (bios_only || !ret)

View File

@@ -11953,16 +11953,14 @@ const machine_t machines[] = {
.snd_device = NULL, .snd_device = NULL,
.net_device = NULL .net_device = NULL
}, },
/* 430VX */
/* Has a SM(S)C FDC37C932FR Super I/O chip with on-chip KBC with AMI /* Has a SM(S)C FDC37C932FR Super I/O chip with on-chip KBC with AMI
MegaKey (revision '5') KBC firmware. */ MegaKey (revision '5') KBC firmware. */
{ {
.name = "[i430VX] Gateway 2000 Hitman", .name = "[i430VX] Gateway 2000 Hitman",
.internal_name = "hitman", .internal_name = "gw2kte",
.type = MACHINE_TYPE_SOCKET7, .type = MACHINE_TYPE_SOCKET7,
.chipset = MACHINE_CHIPSET_INTEL_430VX, .chipset = MACHINE_CHIPSET_INTEL_430VX,
.init = machine_at_hitman_init, .init = machine_at_gw2kte_init,
.p1_handler = NULL, .p1_handler = NULL,
.gpio_handler = NULL, .gpio_handler = NULL,
.available_flag = MACHINE_AVAILABLE, .available_flag = MACHINE_AVAILABLE,
@@ -11996,8 +11994,6 @@ const machine_t machines[] = {
.snd_device = NULL, .snd_device = NULL,
.net_device = NULL .net_device = NULL
}, },
/* Has a SM(S)C FDC37C935 Super I/O chip with on-chip KBC with Phoenix /* Has a SM(S)C FDC37C935 Super I/O chip with on-chip KBC with Phoenix
MultiKey/42 (version 1.38) KBC firmware. */ MultiKey/42 (version 1.38) KBC firmware. */
{ {