mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
something is broken, moved some asm optimizers to separate branch for the time being
This commit is contained in:
parent
870c6ea747
commit
68d81dd824
@ -8,6 +8,11 @@
|
|||||||
; It's less readable I think, but produces a smaller program.
|
; It's less readable I think, but produces a smaller program.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; @todo doesn't work correctly any longer and locks up at the end. Something seems broken in the if statements comparing the numbers.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
~ main {
|
~ main {
|
||||||
sub start() {
|
sub start() {
|
||||||
str name = "????????????????????????????????????????"
|
str name = "????????????????????????????????????????"
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
return ending(true)
|
return ending(true)
|
||||||
} else {
|
} else {
|
||||||
c64scr.print("\n\nThat is too ")
|
c64scr.print("\n\nThat is too ")
|
||||||
if guess<secretnumber
|
if guess<secretnumber ; @todo not correct anymore, entering '19' says too low while the number is 18
|
||||||
c64scr.print("low!\n")
|
c64scr.print("low!\n")
|
||||||
else
|
else
|
||||||
c64scr.print("high!\n")
|
c64scr.print("high!\n")
|
||||||
|
Loading…
Reference in New Issue
Block a user