This commit is contained in:
Irmen de Jong 2021-03-23 23:48:53 +01:00
parent af4de6d2fc
commit e7ef2ed31b

View File

@ -65,7 +65,7 @@ internal class BuiltinFunctionsAsmGen(private val program: Program, private val
"pokew" -> funcPokeW(fcall)
"poke" -> throw AssemblyError("poke() should have been replaced by @()")
"cmp" -> funcCmp(fcall)
else -> TODO("missing asmgen for builtin func ${func.name}")
else -> throw AssemblyError("missing asmgen for builtin func ${func.name}")
}
}