summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/isa_svga_s3.c
diff options
context:
space:
mode:
author mahlemiut <mahlemiut@users.noreply.github.com>2012-09-12 13:32:49 +0000
committer mahlemiut <mahlemiut@users.noreply.github.com>2012-09-12 13:32:49 +0000
commitca89e7e0e620f30e1aac95518f3e76709a498d48 (patch)
tree0726b7001ed6e81419db449cd9a769a879ed014d /src/mess/video/isa_svga_s3.c
parentdec248d2bfdf7161d010a09b253dc6b15eb91a04 (diff)
(MESS) Added preliminary ATi Graphics Ultra support
(MESS) svga_s3/gfxultra: Added vector line drawing and short stroke vectors.
Diffstat (limited to 'src/mess/video/isa_svga_s3.c')
-rw-r--r--src/mess/video/isa_svga_s3.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mess/video/isa_svga_s3.c b/src/mess/video/isa_svga_s3.c
index 4565b64d7fd..7a3c7888e7a 100644
--- a/src/mess/video/isa_svga_s3.c
+++ b/src/mess/video/isa_svga_s3.c
@@ -85,6 +85,7 @@ void isa16_svga_s3_device::device_start()
m_isa->install16_device(0x92e8, 0x92eb, 0, 0, FUNC(s3_line_error_r), FUNC(s3_line_error_w));
m_isa->install16_device(0x96e8, 0x96eb, 0, 0, FUNC(s3_width_r), FUNC(s3_width_w));
m_isa->install16_device(0x9ae8, 0x9aeb, 0, 0, FUNC(s3_gpstatus_r), FUNC(s3_cmd_w));
+ m_isa->install16_device(0x9ee8, 0x9eeb, 0, 0, FUNC(ibm8514_ssv_r), FUNC(ibm8514_ssv_w));
m_isa->install16_device(0xa2e8, 0xa2eb, 0, 0, FUNC(s3_bgcolour_r), FUNC(s3_bgcolour_w));
m_isa->install16_device(0xa6e8, 0xa6eb, 0, 0, FUNC(s3_fgcolour_r), FUNC(s3_fgcolour_w));
m_isa->install16_device(0xb6e8, 0xb6eb, 0, 0, FUNC(s3_backmix_r), FUNC(s3_backmix_w));