Fix unsigned type

This commit is contained in:
michaelangel007 2023-03-27 15:59:56 -07:00
parent 48282e8e93
commit f8533d5c86

View File

@ -468,7 +468,7 @@ bool _6502_CalcRelativeOffset ( int nOpcode, int nBaseAddress, int nTargetAddres
//===========================================================================
int _6502_FindStackReturnAddress (const WORD & nAddress)
{
unsigned nStack = regs.sp;
WORD nStack = regs.sp;
nStack++;
while (nStack <= (_6502_STACK_END - 1))