Implement reboot via PCI
This commit is contained in:
parent
d4aec0967f
commit
ad22c98247
1 changed files with 7 additions and 0 deletions
|
|
@ -117,6 +117,13 @@ function PCI(cpu)
|
|||
},
|
||||
function(out_byte)
|
||||
{
|
||||
if((this.pci_addr[1] & 0x06) === 0x02 && (out_byte & 0x06) === 0x06)
|
||||
{
|
||||
dbg_log("CPU reboot via PCI");
|
||||
cpu.reboot_internal();
|
||||
return;
|
||||
}
|
||||
|
||||
this.pci_addr[1] = out_byte;
|
||||
},
|
||||
function(out_byte)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue