From: Randolph C. <ta...@us...> - 2007-03-04 15:16:32
|
Update of /cvsroot/hppaqemu/hppaqemu/hw In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv12958/hw Added Files: hppa.c Log Message: beginning of hppa target support --- NEW FILE: hppa.c --- #include "vl.h" #define BIOS_FILENAME "hppa_pdc.bin" #define BIOS_ADDRESS 0xF0000000 void DMA_run(void) { /* XXXXX */ } void irq_info(void) { /* XXXXX */ } void pic_set_irq(int irq, int level) { /* XXXXX */ } void pic_info() { /* XXXXX */ } void vga_update_display() { /* XXXXX */ } void vga_invalidate_display() { /* XXXXX */ } void vga_screen_dump(const char *filename) { /* XXXXX */ } void hppa_init(int ram_size, int vga_ram_size, int boot_device, DisplayState * ds, const char **fd_filename, int snapshot, const char *kernel_filename, const char *kernel_cmdline, const char *initrd_filename) { } QEMUMachine hppa_machine = { "hppa", "hppa card", hppa_init }; |