mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
Don't kill the registered irqs on reset.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2903 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
924b2c07cd
commit
33ac7f1630
1 changed files with 4 additions and 3 deletions
|
@ -284,10 +284,8 @@ struct CPUMIPSState {
|
|||
int CCRes; /* Cycle count resolution/divisor */
|
||||
int Status_rw_bitmask; /* Read/write bits in CP0_Status */
|
||||
|
||||
#if defined(CONFIG_USER_ONLY)
|
||||
#ifdef CONFIG_USER_ONLY
|
||||
target_ulong tls_value;
|
||||
#else
|
||||
void *irq[8];
|
||||
#endif
|
||||
|
||||
CPU_COMMON
|
||||
|
@ -298,6 +296,9 @@ struct CPUMIPSState {
|
|||
const char *initrd_filename;
|
||||
|
||||
mips_def_t *cpu_model;
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
void *irq[8];
|
||||
#endif
|
||||
|
||||
struct QEMUTimer *timer; /* Internal timer */
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue