Debugger: Fixed debug mode assert for expression evaluation caused by changes to how internal RAM mirroring is handled in debug tools

This commit is contained in:
Sour 2020-02-23 09:47:10 -05:00
parent 267a5d0d24
commit 74e8f39ea1

View file

@ -603,7 +603,7 @@ void ExpressionEvaluator::RunTests()
test(":50", EvalResultType::Numeric, 50);
test(":$50", EvalResultType::Numeric, 0x50);
test(":($1FFF+1)", EvalResultType::Numeric, -1);
test(":$1FFF+1", EvalResultType::Numeric, 0x2000);
test(":$1FFF+1", EvalResultType::Numeric, 0x800);
test("1+:$100", EvalResultType::Numeric, 0x101);
}
#endif