qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 07/23] vga: export vga_mem_{read,write}


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 07/23] vga: export vga_mem_{read,write}
Date: Mon, 31 Aug 2009 16:07:17 +0200

Signed-off-by: Juan Quintela <address@hidden>
---
 hw/vga.c     |    4 ++--
 hw/vga_int.h |    2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/hw/vga.c b/hw/vga.c
index 8b926b0..06ae2ae 100644
--- a/hw/vga.c
+++ b/hw/vga.c
@@ -2113,13 +2113,13 @@ static void vga_update_text(void *opaque, console_ch_t 
*chardata)
     dpy_update(s->ds, 0, 0, s->last_width, height);
 }

-static CPUReadMemoryFunc * const vga_mem_read[3] = {
+CPUReadMemoryFunc * const vga_mem_read[3] = {
     vga_mem_readb,
     vga_mem_readw,
     vga_mem_readl,
 };

-static CPUWriteMemoryFunc * const vga_mem_write[3] = {
+CPUWriteMemoryFunc * const vga_mem_write[3] = {
     vga_mem_writeb,
     vga_mem_writew,
     vga_mem_writel,
diff --git a/hw/vga_int.h b/hw/vga_int.h
index 54b3d5a..ed88595 100644
--- a/hw/vga_int.h
+++ b/hw/vga_int.h
@@ -220,3 +220,5 @@ extern const uint8_t gr_mask[16];

 #define VGA_RAM_SIZE (8192 * 1024)

+extern CPUReadMemoryFunc * const vga_mem_read[3];
+extern CPUWriteMemoryFunc * const vga_mem_write[3];
-- 
1.6.2.5





reply via email to

[Prev in Thread] Current Thread [Next in Thread]