2024-10-22 22:58:32 +02:00
|
|
|
%import textio
|
2024-10-13 19:37:25 +02:00
|
|
|
%option no_sysinit
|
|
|
|
%zeropage basicsafe
|
|
|
|
|
2024-10-18 22:22:34 +02:00
|
|
|
|
2024-10-07 19:17:37 +02:00
|
|
|
main {
|
2024-10-16 18:36:19 +02:00
|
|
|
sub start() {
|
2024-10-23 22:04:25 +02:00
|
|
|
byte @shared ww = -99
|
|
|
|
ww++
|
2024-10-18 01:29:51 +02:00
|
|
|
|
2024-10-23 22:04:25 +02:00
|
|
|
if ww&1 ==0
|
|
|
|
txt.print("x ")
|
|
|
|
|
|
|
|
if ww&64 ==0
|
|
|
|
txt.print("a ")
|
|
|
|
|
|
|
|
if ww&128!=0
|
|
|
|
txt.print("neg ")
|
|
|
|
|
|
|
|
txt.print_ub(if ww & 64==0 111 else 222)
|
2024-10-23 02:37:51 +02:00
|
|
|
txt.spc()
|
2024-10-23 22:04:25 +02:00
|
|
|
txt.print_ub(if ww & 128!=0 111 else 222)
|
2024-10-23 02:37:51 +02:00
|
|
|
txt.spc()
|
2024-10-13 04:20:57 +02:00
|
|
|
}
|
2024-09-14 23:17:26 +02:00
|
|
|
}
|