summaryrefslogtreecommitdiffstats
path: root/hw/display/vga-helpers.h
diff options
context:
space:
mode:
authorGerd Hoffmann2019-09-17 13:14:40 +0200
committerGerd Hoffmann2019-09-19 10:37:46 +0200
commit145e543eb3c9564e13b821869693bc977c409a0b (patch)
treed88f7ab68c869c08067e6e56cd1278d3e2340f9d /hw/display/vga-helpers.h
parenttarget/sparc: Switch to do_transaction_failed() hook (diff)
downloadqemu-145e543eb3c9564e13b821869693bc977c409a0b.tar.gz
qemu-145e543eb3c9564e13b821869693bc977c409a0b.tar.xz
qemu-145e543eb3c9564e13b821869693bc977c409a0b.zip
vga: move access helpers to separate include file
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20190917111441.27405-2-kraxel@redhat.com
Diffstat (limited to 'hw/display/vga-helpers.h')
-rw-r--r--hw/display/vga-helpers.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/hw/display/vga-helpers.h b/hw/display/vga-helpers.h
index 5a752b3f9e..10e9cfd40a 100644
--- a/hw/display/vga-helpers.h
+++ b/hw/display/vga-helpers.h
@@ -95,32 +95,6 @@ static void vga_draw_glyph9(uint8_t *d, int linesize,
} while (--h);
}
-static inline uint8_t vga_read_byte(VGACommonState *vga, uint32_t addr)
-{
- return vga->vram_ptr[addr & vga->vbe_size_mask];
-}
-
-static inline uint16_t vga_read_word_le(VGACommonState *vga, uint32_t addr)
-{
- uint32_t offset = addr & vga->vbe_size_mask & ~1;
- uint16_t *ptr = (uint16_t *)(vga->vram_ptr + offset);
- return lduw_le_p(ptr);
-}
-
-static inline uint16_t vga_read_word_be(VGACommonState *vga, uint32_t addr)
-{
- uint32_t offset = addr & vga->vbe_size_mask & ~1;
- uint16_t *ptr = (uint16_t *)(vga->vram_ptr + offset);
- return lduw_be_p(ptr);
-}
-
-static inline uint32_t vga_read_dword_le(VGACommonState *vga, uint32_t addr)
-{
- uint32_t offset = addr & vga->vbe_size_mask & ~3;
- uint32_t *ptr = (uint32_t *)(vga->vram_ptr + offset);
- return ldl_le_p(ptr);
-}
-
/*
* 4 color mode
*/