diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-04 07:20:07 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-04 07:20:07 +0000 |
commit | 3b3fb32229c3dae1f399e3ebf45a6553c6824e07 (patch) | |
tree | 90c257fee0a210bec2dd0c03e0ffbd0045d6face /hw/mips_r4k.c | |
parent | fdb0d09d02d8324533bb6d356d34e8bea8c7b3e3 (diff) |
Use qemu-log.h
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5413 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/mips_r4k.c')
-rw-r--r-- | hw/mips_r4k.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c index 1499af7866..6551b02e0b 100644 --- a/hw/mips_r4k.c +++ b/hw/mips_r4k.c @@ -15,6 +15,7 @@ #include "sysemu.h" #include "boards.h" #include "flash.h" +#include "qemu-log.h" #ifdef TARGET_WORDS_BIGENDIAN #define BIOS_FILENAME "mips_bios.bin" @@ -35,8 +36,6 @@ static const int ide_irq[2] = { 14, 15 }; static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 }; static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 }; -extern FILE *logfile; - static PITState *pit; /* PIT i8254 */ /* i8254 PIT is attached to the IRQ0 at PIC i8259 */ |