diff options
author | 2024-02-15 20:40:22 +0100 | |
---|---|---|
committer | 2024-02-15 20:40:22 +0100 | |
commit | a7b6ad470ad7f6c93b86d28a60fd96bad62b48e0 (patch) | |
tree | 3e784817cc89350fb9a9a028ea0e83d57b4993f5 /src | |
parent | 7123340d8fa5e370501896fb2b84f7dc32780df2 (diff) |
video/s3virge: add VGA core moniker so to differentiate with the PCI/ISA equivalents
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/video/s3virge.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/s3virge.cpp b/src/devices/video/s3virge.cpp index a3d9c0c14e8..bd28462a444 100644 --- a/src/devices/video/s3virge.cpp +++ b/src/devices/video/s3virge.cpp @@ -47,9 +47,9 @@ #define CRTC_PORT_ADDR ((vga.miscellaneous_output & 1) ? 0x3d0 : 0x3b0) -DEFINE_DEVICE_TYPE(S3VIRGE, s3virge_vga_device, "virge_vga", "S3 86C325") -DEFINE_DEVICE_TYPE(S3VIRGEDX, s3virgedx_vga_device, "virgedx_vga", "S3 86C375") -DEFINE_DEVICE_TYPE(S3VIRGEDX1, s3virgedx_rev1_vga_device, "virgedx_vga_r1", "S3 86C375 (rev 1)") +DEFINE_DEVICE_TYPE(S3VIRGE, s3virge_vga_device, "virge_vga", "S3 86C325 VGA core") +DEFINE_DEVICE_TYPE(S3VIRGEDX, s3virgedx_vga_device, "virgedx_vga", "S3 86C375 VGA core") +DEFINE_DEVICE_TYPE(S3VIRGEDX1, s3virgedx_rev1_vga_device, "virgedx_vga_r1", "S3 86C375 (rev 1) VGA core") s3virge_vga_device::s3virge_vga_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : s3virge_vga_device(mconfig, S3VIRGE, tag, owner, clock) |