update 0.8.2
This commit is contained in:
parent
28f0dd67d6
commit
210fc0e55d
22 changed files with 198 additions and 356 deletions
|
|
@ -1,10 +1,9 @@
|
|||
/**************************************************************************
|
||||
* SAE - Scripted Amiga Emulator
|
||||
*
|
||||
* https://github.com/naTmeg/ScriptedAmigaEmulator
|
||||
* 2012-2015 Rupert Hausberger
|
||||
*
|
||||
* ©2012 Rupert Hausberger
|
||||
* Commercial use is prohibited.
|
||||
* https://github.com/naTmeg/ScriptedAmigaEmulator
|
||||
*
|
||||
***************************************************************************
|
||||
*
|
||||
|
|
@ -1063,7 +1062,7 @@ function CPU() {
|
|||
regs.pc = fault.pc;
|
||||
return exception(5);
|
||||
} else {
|
||||
var quo = ~~(d / s);
|
||||
var quo = ~~(d / s); /* Thanks 'dmcoles' */
|
||||
|
||||
if (quo < 0) quo += 0x10000;
|
||||
|
||||
|
|
@ -5253,4 +5252,4 @@ function CPU() {
|
|||
cycle_spc(cpu_cycles);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue