update 0.8.2

This commit is contained in:
Rupert Hausberger 2015-01-11 01:43:06 +01:00
commit 210fc0e55d
22 changed files with 198 additions and 356 deletions

View file

@ -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);
}
}
}
}