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:
parent
267a5d0d24
commit
74e8f39ea1
1 changed files with 1 additions and 1 deletions
|
@ -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
|
Loading…
Add table
Reference in a new issue