diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-17 13:14:40 +0200 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-19 10:37:46 +0200 |
| commit | 145e543eb3c9564e13b821869693bc977c409a0b (patch) | |
| tree | d88f7ab68c869c08067e6e56cd1278d3e2340f9d /hw/display/vga-helpers.h | |
| parent | f8c3db33a5e863291182f8862ddf81618a7c6194 (diff) | |
| download | focaccia-qemu-145e543eb3c9564e13b821869693bc977c409a0b.tar.gz focaccia-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.h | 26 |
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 */ |