26 lines
350 B
Plaintext
Raw Normal View History

%import c64utils
2018-10-16 02:26:35 +02:00
~ main {
2018-11-11 18:19:08 +01:00
sub start() {
2018-12-30 00:02:44 +01:00
A+=5
; @todo if-else if should compile ?:
; if A>100
; Y=2
; else if A>20
; Y=3
; @($d020) = 5
@($d020)++
@($d021)--
; @($d020)=(@$d020)+5
@($d020)+=5
; @($d021)=(@$d021)-5
@($d021)-=5
2018-12-30 00:02:44 +01:00
}
2018-12-26 04:51:21 +01:00
}