repeat countervars again in zeropage if possible, fix pointer arithmetic error

This commit is contained in:
Irmen de Jong
2025-05-17 11:51:34 +02:00
parent 65e34d4989
commit 50650b966b
5 changed files with 37 additions and 24 deletions

View File

@@ -92,7 +92,7 @@ class TestAsmGenSymbols: StringSpec({
val astchecker = AstChecker(program, errors, options)
astchecker.visit(program)
errors.report()
val ptProgram = SimplifiedAstMaker(program, options.compTarget, errors).transform()
val ptProgram = SimplifiedAstMaker(program, errors).transform()
val st = SymbolTableMaker(ptProgram, options).make()
return AsmGen6502Internal(ptProgram, st, options, errors, 0)
}