Development builds now actually list two Cirrus cards.

This commit is contained in:
OBattler
2017-10-26 23:56:38 +02:00
parent 9ea0163bb7
commit 0bbcac68d2
2 changed files with 8 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
*
* Emulation of select Cirrus Logic cards.
*
* Version: @(#)vid_cl_gd.c 1.0.1 2017/10/16
* Version: @(#)vid_cl_gd.c 1.0.2 2017/10/26
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -1050,7 +1050,7 @@ device_t gd5422_device =
device_t gd5429_device =
{
"Cirrus Logic GD5429",
DEVICE_ISA | DEVICE_NOT_WORKING,
DEVICE_VLB | DEVICE_NOT_WORKING,
0,
gd5429_init,
clgd_close,
@@ -1140,7 +1140,7 @@ device_t gd5440_device =
device_t gd5446_device =
{
"Cirrus Logic GD5446",
DEVICE_ISA | DEVICE_NOT_WORKING,
DEVICE_VLB | DEVICE_NOT_WORKING,
0,
gd5446_init,
clgd_close,

View File

@@ -8,7 +8,7 @@
*
* Define all known video cards.
*
* Version: @(#)vid_table.c 1.0.2 2017/10/16
* Version: @(#)vid_table.c 1.0.3 2017/10/26
*
* Authors: Miran Grca, <mgrca8@gmail.com>
* Fred N. van Kempen, <decwiz@yahoo.com>
@@ -124,6 +124,10 @@ video_cards[] = {
{"[PCI] S3 ViRGE/DX (VBE 2.0)", "virge375_vbe20_pci", &s3_virge_375_4_pci_device, GFX_VIRGEDX4_PCI },
{"[PCI] Trident TGUI9440", "tgui9440_pci", &tgui9440_pci_device, GFX_TGUI9440_PCI },
{"[VLB] ATI Graphics Pro Turbo (Mach64 GX)", "mach64x_vlb", &mach64gx_vlb_device, GFX_MACH64GX_VLB },
#if defined(DEV_BRANCH) && defined(USE_CIRRUS)
{"[VLB] Cirrus Logic CL-GD5429", "cl_gd5429", &gd5429_device, GFX_CL_GD5429},
{"[VLB] Cirrus Logic CL-GD5446", "cl_gd5446", &gd5446_device, GFX_CL_GD5446},
#endif
{"[VLB] Diamond Stealth 32 (Tseng ET4000/w32p)","stealth32_vlb", &et4000w32p_vlb_device, GFX_ET4000W32_VLB },
{"[VLB] Diamond Stealth 3D 2000 (S3 ViRGE)", "stealth3d_2000_vlb", &s3_virge_vlb_device, GFX_VIRGE_VLB },
{"[VLB] Diamond Stealth 3D 3000 (S3 ViRGE/VX)", "stealth3d_3000_vlb", &s3_virge_988_vlb_device, GFX_VIRGEVX_VLB },