labels no longer start with '_' fixes #62

This commit is contained in:
Irmen de Jong
2022-01-17 22:03:53 +01:00
parent 8966d2aa06
commit d916027e75
9 changed files with 57 additions and 116 deletions

View File

@@ -4,10 +4,6 @@ interface IAssemblyGenerator {
fun compileToAssembly(): IAssemblyProgram
}
const val generatedLabelPrefix = "_prog8_label_"
const val subroutineFloatEvalResultVar1 = "_prog8_float_eval_result1"
const val subroutineFloatEvalResultVar2 = "_prog8_float_eval_result2"
interface IAssemblyProgram {
val valid: Boolean
val name: String