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