From 62dda4d891d676d0b0f2fe898366bb2667369987 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sun, 14 Feb 2021 17:13:56 +0100 Subject: [PATCH] fix asm bug in conv.any2uword --- compiler/res/prog8lib/conv.p8 | 2 +- compiler/res/version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/res/prog8lib/conv.p8 b/compiler/res/prog8lib/conv.p8 index 299f116e4..b63a34f4f 100644 --- a/compiler/res/prog8lib/conv.p8 +++ b/compiler/res/prog8lib/conv.p8 @@ -257,7 +257,7 @@ asmsub any2uword(str string @AY) clobbers(Y) -> ubyte @A { sta P8ZP_SCRATCH_W1 sty P8ZP_SCRATCH_W1+1 ldy #0 - lda (P8ZP_SCRATCH_W1) + lda (P8ZP_SCRATCH_W1),y ldy P8ZP_SCRATCH_W1+1 cmp #'$' beq _hex diff --git a/compiler/res/version.txt b/compiler/res/version.txt index a435f5a56..416692572 100644 --- a/compiler/res/version.txt +++ b/compiler/res/version.txt @@ -1 +1 @@ -6.1 +6.2-SNAPSHOT