mirror of
https://github.com/irmen/prog8.git
synced 2024-11-04 19:05:57 +00:00
fix sqrt() regression
This commit is contained in:
parent
a99d38fdaa
commit
1ee3f826cc
@ -274,7 +274,7 @@ internal class BuiltinFunctionsAsmGen(private val program: PtProgram,
|
||||
|
||||
private fun funcSqrt(fcall: PtBuiltinFunctionCall, resultToStack: Boolean, resultRegister: RegisterOrPair?, scope: IPtSubroutine?) {
|
||||
translateArguments(fcall, scope)
|
||||
when(fcall.type) {
|
||||
when(fcall.args[0].type) {
|
||||
DataType.UBYTE -> {
|
||||
if(resultToStack)
|
||||
asmgen.out(" ldy #0 | jsr prog8_lib.func_sqrt16_stack")
|
||||
|
Loading…
Reference in New Issue
Block a user