diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-08-21 09:41:56 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-08-21 09:41:56 +0000 |
commit | 697584ab24c8aa4f9b8162a12993523bb2450af0 (patch) | |
tree | e8b60117ac3fac5664ade8daad550ff3ecc6f374 /hw | |
parent | c96a29cdef7659ae7c4a816206915896a8f69e39 (diff) |
Add i8259 PIT to MIPS (Ralf Baechle
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1551 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/mips_r4k.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c index bb7742f8dd..bf3376d4f6 100644 --- a/hw/mips_r4k.c +++ b/hw/mips_r4k.c @@ -7,6 +7,8 @@ extern FILE *logfile; +static PITState *pit; + static void pic_irq_request(void *opaque, int level) { if (level) { @@ -242,6 +244,7 @@ void mips_r4k_init (int ram_size, int vga_ram_size, int boot_device, isa_mem_base = 0x10000000; isa_pic = pic_init(pic_irq_request, cpu_single_env); + pit = pit_init(0x40, 0); serial_init(0x3f8, 4, serial_hds[0]); vga_initialize(NULL, ds, phys_ram_base + ram_size, ram_size, vga_ram_size, 0, 0); |