mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
vga: export vga_ioport_{read,write}
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
0ceac75b8c
commit
43bf782b1a
2 changed files with 6 additions and 4 deletions
8
hw/vga.c
8
hw/vga.c
|
@ -285,9 +285,9 @@ static uint8_t vga_dumb_retrace(VGAState *s)
|
|||
return s->st01 ^ (ST01_V_RETRACE | ST01_DISP_ENABLE);
|
||||
}
|
||||
|
||||
static uint32_t vga_ioport_read(void *opaque, uint32_t addr)
|
||||
uint32_t vga_ioport_read(void *opaque, uint32_t addr)
|
||||
{
|
||||
VGAState *s = opaque;
|
||||
VGACommonState *s = opaque;
|
||||
int val, index;
|
||||
|
||||
/* check port range access depending on color/monochrome mode */
|
||||
|
@ -378,9 +378,9 @@ static uint32_t vga_ioport_read(void *opaque, uint32_t addr)
|
|||
return val;
|
||||
}
|
||||
|
||||
static void vga_ioport_write(void *opaque, uint32_t addr, uint32_t val)
|
||||
void vga_ioport_write(void *opaque, uint32_t addr, uint32_t val)
|
||||
{
|
||||
VGAState *s = opaque;
|
||||
VGACommonState *s = opaque;
|
||||
int index;
|
||||
|
||||
/* check port range access depending on color/monochrome mode */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue