changed -breakinstr option so that you now specify the exact instruction to use for a %breakpoint.

also fixed a IR issue with x=not x.
This commit is contained in:
Irmen de Jong
2024-01-22 21:07:51 +01:00
parent 84a7e86fe3
commit 64c132ee0a
12 changed files with 28 additions and 47 deletions

View File

@@ -25,7 +25,7 @@ class CompilationOptions(val output: OutputType,
var slabsHighBank: Int? = null,
var slabsGolden: Boolean = false,
var splitWordArrays: Boolean = false,
var breakpointCpuInstruction: Boolean = false,
var breakpointCpuInstruction: String? = null,
var outputDir: Path = Path(""),
var symbolDefs: Map<String, String> = emptyMap()
) {