2024-03-12 22:39:54 +00:00
|
|
|
%import textio
|
|
|
|
%zeropage basicsafe
|
|
|
|
%option no_sysinit
|
2023-12-31 00:02:33 +00:00
|
|
|
|
2024-01-07 17:48:18 +00:00
|
|
|
main {
|
2024-03-02 13:26:02 +00:00
|
|
|
sub start() {
|
2024-03-15 00:04:51 +00:00
|
|
|
cx16.reset_system()
|
|
|
|
repeat {
|
|
|
|
for cx16.r0L in 0 to 255 {
|
|
|
|
cx16.set_led_brightness(cx16.r0L)
|
|
|
|
delay()
|
2024-03-14 21:13:41 +00:00
|
|
|
}
|
2024-03-15 00:04:51 +00:00
|
|
|
for cx16.r0L in 255 downto 0 {
|
|
|
|
cx16.set_led_brightness(cx16.r0L)
|
|
|
|
delay()
|
2024-03-14 21:13:41 +00:00
|
|
|
}
|
2024-03-13 21:33:25 +00:00
|
|
|
}
|
2024-03-01 18:45:16 +00:00
|
|
|
}
|
2024-03-14 21:13:41 +00:00
|
|
|
|
2024-03-15 00:04:51 +00:00
|
|
|
sub delay() {
|
|
|
|
repeat 2000 {
|
|
|
|
%asm {{
|
|
|
|
nop
|
|
|
|
}}
|
|
|
|
}
|
2024-03-14 21:13:41 +00:00
|
|
|
}
|
2024-03-01 18:45:16 +00:00
|
|
|
}
|