Fixed a HD6309 core bug/typo in the divq_im opcode. [Romain Tisserand]

This commit is contained in:
Brian Troha 2009-07-09 23:08:05 +00:00
parent 7fde2018f8
commit 95ce94fbfc

View File

@ -2615,7 +2615,7 @@ OP_HANDLER( divq_im )
if( W & 0x0001 )
SEC;
if ( (v > 32768) || (v < -35767) ) /* soft overflow */
if ( (v > 32768) || (v < -32767) ) /* soft overflow */
{
SEV;