mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-06 06:27:41 -07:00
Correctly identify multiple cpus in SMP systems
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
cf7c00d5c6
commit
671b0f368b
2 changed files with 2 additions and 4 deletions
|
|
@ -1359,8 +1359,7 @@ void helper_mtc0_cause (target_ulong arg1)
|
|||
void helper_mtc0_ebase (target_ulong arg1)
|
||||
{
|
||||
/* vectored interrupts not implemented */
|
||||
/* Multi-CPU not implemented */
|
||||
env->CP0_EBase = 0x80000000 | (arg1 & 0x3FFFF000);
|
||||
env->CP0_EBase = (env->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000);
|
||||
}
|
||||
|
||||
void helper_mtc0_config0 (target_ulong arg1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue