Git - code.swisschili.sh
code.swisschili.sh
/
6502
/
abccdfcd20d5ba84ae11d82e58ee5d21f18c1c4d
/
.
/
as
/
test
/
colors.s
blob: 3c705be504af647583a4ba1ca35b28a4f216c9c5 [
file
] [
log
] [
blame
]
swissChili
dab15a6
2020-08-17 15:41:27 -0700
[
diff
] [
blame
]
1
;;;
Shows some nice colors on the screen
2
3
LDY
#$0
4
loop
:
5
TYA
6
STA
$
200
,
Y
7
STA
$
300
,
Y
8
STA
$
400
,
Y
9
STA
$
500
,
Y
10
INY
11
CMP
#$ff
12
BCC loop
13
BRK