diff options
author | 2023-07-04 19:10:46 +0200 | |
---|---|---|
committer | 2023-07-04 19:10:46 +0200 | |
commit | 498b7a0a7ddf138e83b79acbc159597587db3804 (patch) | |
tree | f0e56fee0f4c89734d4fb3c5eef64bf4b298c38b /src/devices/video/pc_vga_ati.h | |
parent | 9013ece6ee4883037265626684d7d45803959dd2 (diff) |
video/pc_vga.cpp: part 2 of interface modernization (#11315)
* video/pc_vga.cpp: update QA, move SVGA related function to bottom of file
* chore: rename clgd542x.cpp -> pc_vga_cirrus.cpp
* chore: move SiS630 SVGA portion to pc_vga_sis.cpp
* chore: intermediate step to convert crtc/seq/attribute/gc_reg_read/write to maps from violating parties
* video/pc_vga_cirrus.cpp: preliminary implementation of hidden DAC mode
* misc/gambl186.cpp: fix compile
* pc_vga_cirrus.cpp: fix gambl186 regression
* chore: convert pc_vga sequencer regs to space memory
* chore: make sure that address_space_config is preserved when inheriting
* trs/vis.cpp: convert VGA to sequencer_map
* chore: move s3virge out of bus/isa
* pc_vga.cpp: convert ATC to attribute_map
* pc_vga.cpp: convert GC to gc_map
* pc_vga.cpp: convert CRTC to crtc_map
* fixes trs/vis.cpp refresh rate by chain reaction (40 Hz -> 61 Hz)
* video/s3virge.cpp: fix regression
* video/pc_vga.cpp: reorder functions
* chore: modernize VGA main I/O interfaces
* video/clgd546x_laguna.cpp: update to latest
* konami/konmedal020.cpp: fix -validate
* video/pc_vga.cpp: use yet another custom address_map_constructor in place of the non-working memory_view pattern
* video/ibm8514a.cpp: address self review [skip ci]
Diffstat (limited to 'src/devices/video/pc_vga_ati.h')
-rw-r--r-- | src/devices/video/pc_vga_ati.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/devices/video/pc_vga_ati.h b/src/devices/video/pc_vga_ati.h index 70c83f50e11..beeae3c3053 100644 --- a/src/devices/video/pc_vga_ati.h +++ b/src/devices/video/pc_vga_ati.h @@ -23,7 +23,6 @@ public: virtual void mem_w(offs_t offset, uint8_t data) override; // VGA registers - virtual uint8_t port_03c0_r(offs_t offset) override; uint8_t ati_port_ext_r(offs_t offset); void ati_port_ext_w(offs_t offset, uint8_t data); |