mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
Arm display emulation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1746 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
a41b2ff2dd
commit
bdd5003ae5
5 changed files with 657 additions and 1 deletions
|
|
@ -27,8 +27,11 @@ void irq_info(void)
|
|||
{
|
||||
}
|
||||
|
||||
static void *lcd;
|
||||
|
||||
void vga_update_display(void)
|
||||
{
|
||||
pl110_update_display(lcd);
|
||||
}
|
||||
|
||||
void vga_screen_dump(const char *filename)
|
||||
|
|
@ -37,6 +40,7 @@ void vga_screen_dump(const char *filename)
|
|||
|
||||
void vga_invalidate_display(void)
|
||||
{
|
||||
pl110_invalidate_display(lcd);
|
||||
}
|
||||
|
||||
void DMA_run (void)
|
||||
|
|
@ -1204,6 +1208,7 @@ static void integratorcp_init(int ram_size, int vga_ram_size, int boot_device,
|
|||
exit (1);
|
||||
}
|
||||
}
|
||||
lcd = pl110_init(ds, 0xc0000000, pic, 22);
|
||||
|
||||
/* Load the kernel. */
|
||||
if (!kernel_filename) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue