forked from MightyPork/crsn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
273 B
16 lines
273 B
4 years ago
|
(
|
||
|
(sc-init 512 512)
|
||
|
(sc-opt SCREEN_UPSCALE 16)
|
||
|
(def W 32)
|
||
|
|
||
|
(:l)
|
||
|
(sc-poll)
|
||
|
(sc-erase)
|
||
|
(sc-mouse r0 r1)
|
||
|
(sc-rect 0 r1 W 1 #ff0000)
|
||
|
(sc-rect r0 0 1 W #0066ff)
|
||
|
(sc-wr r0 r1 #ffffff)
|
||
|
(mslp 10)
|
||
|
(j :l)
|
||
|
)
|