mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
PIC reset fix (initial patch by Hidemi KAWAI)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@836 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
4399059e4d
commit
b54ad0498e
4 changed files with 9 additions and 4 deletions
5
exec.c
5
exec.c
|
@ -1112,6 +1112,11 @@ void cpu_interrupt(CPUState *env, int mask)
|
|||
}
|
||||
}
|
||||
|
||||
void cpu_reset_interrupt(CPUState *env, int mask)
|
||||
{
|
||||
env->interrupt_request &= ~mask;
|
||||
}
|
||||
|
||||
CPULogItem cpu_log_items[] = {
|
||||
{ CPU_LOG_TB_OUT_ASM, "out_asm",
|
||||
"show generated host assembly code for each compiled TB" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue