Add Packard Bell PB810 (without on-board video, for now)

This commit is contained in:
luennix
2023-02-03 10:24:11 +03:00
parent 7a7e780aa3
commit 194ed138d7
2 changed files with 4 additions and 5 deletions

View File

@@ -35,6 +35,7 @@
#include <86box/keyboard.h> #include <86box/keyboard.h>
#include <86box/flash.h> #include <86box/flash.h>
#include <86box/sio.h> #include <86box/sio.h>
#include <86box/sound.h>
#include <86box/hwm.h> #include <86box/hwm.h>
#include <86box/video.h> #include <86box/video.h>
#include <86box/spd.h> #include <86box/spd.h>
@@ -551,9 +552,7 @@ machine_at_pb810_init(const machine_t *model)
pci_register_slot(0x0b, PCI_CARD_NORMAL, 1, 2, 3, 4); pci_register_slot(0x0b, PCI_CARD_NORMAL, 1, 2, 3, 4);
pci_register_slot(0x07, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0); pci_register_slot(0x07, PCI_CARD_SOUTHBRIDGE, 0, 0, 0, 0);
if (gfxcard == VID_INTERNAL) if (sound_card_current[0] == SOUND_INTERNAL)
device_add(&s3_phoenix_trio64vplus_onboard_pci_device);
if (soundcard == SOUND_INTERNAL)
device_add(&cs4237b_device); device_add(&cs4237b_device);
device_add(&i430vx_device); device_add(&i430vx_device);

View File

@@ -9471,7 +9471,7 @@ const machine_t machines[] = {
.max_multi = 3.0 .max_multi = 3.0
}, },
.bus_flags = MACHINE_PS2_PCI, .bus_flags = MACHINE_PS2_PCI,
.flags = MACHINE_IDE_DUAL | MACHINE_AV, .flags = MACHINE_IDE_DUAL | MACHINE_SOUND,
.ram = { .ram = {
.min = 8192, .min = 8192,
.max = 131072, .max = 131072,
@@ -9481,7 +9481,7 @@ const machine_t machines[] = {
.kbc = KBC_UNKNOWN, .kbc = KBC_UNKNOWN,
.kbc_p1 = 0, .kbc_p1 = 0,
.gpio = 0, .gpio = 0,
.device = &s3_phoenix_trio64vplus_onboard_pci_device, .device = NULL,
.vid_device = NULL, .vid_device = NULL,
.snd_device = NULL, .snd_device = NULL,
.net_device = NULL .net_device = NULL