Displaying 4 results from an estimated 4 matches for "vram_offset".
Did you mean:
param_offset
2006 Mar 16
0
[PATCH 3a/3] Add shadow VRAM
...inecmp=%d sr[0x01]=0x%02x\n",
width, height, v, line_offset, s->cr[9], s->cr[0x17], s->line_compare, s->sr[0x01]);
#endif
+ for (y = 0; y < s->vram_size; y += TARGET_PAGE_SIZE)
+ if (vram_dirty(s, y, TARGET_PAGE_SIZE))
+ cpu_physical_memory_set_dirty(s->vram_offset + y);
addr1 = (s->start_addr * 4);
bwidth = width * 4;
y_start = -1;
@@ -1536,8 +1619,17 @@ static void vga_draw_blank(VGAState *s,
void vga_update_display(void)
{
+ static int loop;
VGAState *s = vga_state;
int full_update, graphic_mode;
+
+ /*
+ * Only...
2011 Jul 21
51
Linux Stubdom Problem
2011/7/19 Stefano Stabellini <stefano.stabellini@eu.citrix.com>:
> CC''ing Tim and xen-devel
>
> On Mon, 18 Jul 2011, Jiageng Yu wrote:
>> 2011/7/16 Stefano Stabellini <stefano.stabellini@eu.citrix.com>:
>> > On Fri, 15 Jul 2011, Jiageng Yu wrote:
>> >> 2011/7/15 Jiageng Yu <yujiageng734@gmail.com>:
>> >> > 2011/7/15
2005 May 27
0
[PATCH] ioemu: enable Cirrus VGA emulation
...000000000 -0400
@@ -1877,7 +1877,7 @@
/* qemu''s vga mem is not detached from phys_ram_base and can cause DM abort
* when guest write vga mem, so allocate a new one */
- s->vram_ptr = qemu_mallocz(256 * 1024);
+ s->vram_ptr = qemu_mallocz(vga_ram_size);
s->vram_offset = vga_ram_offset;
s->vram_size = vga_ram_size;
Only in xeno-unstable.mine/tools/ioemu/hw: vga.c.orig
diff -ru xeno-unstable.orig/tools/ioemu/target-i386-dm/Makefile xeno-unstable.mine/tools/ioemu/target-i386-dm/Makefile
--- xeno-unstable.orig/tools/ioemu/target-i386-dm/Makefile 2005-05-25 0...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...t);
+ s->ds->surface->width = s->last_width;
+ s->ds->surface->height = height;
+ dpy_resize(s->ds);
for (dst = chardata, i = 0; i < s->last_width * height; i ++)
console_write_ch(dst ++, '' '');
@@ -2520,7 +2537,6 @@
s->vram_offset = vga_ram_offset;
s->vram_size = vga_ram_size;
s->ds = ds;
- ds->palette = s->last_palette;
s->get_bpp = vga_get_bpp;
s->get_offsets = vga_get_offsets;
s->get_resolution = vga_get_resolution;
@@ -2690,12 +2706,8 @@
{
}
-static void vga_save_dpy_r...