mirror of
https://github.com/actraiser/dust-tutorial-c64-first-intro.git
synced 2025-06-19 09:25:38 -04:00
22 lines
808 B
NASM
22 lines
808 B
NASM
; color data table
|
|
; first 9 rows (40 bytes) are used for the color washer
|
|
; on start the gradient is done by byte 40 is mirroed in byte 1, byte 39 in byte 2 etc...
|
|
|
|
color !byte $09,$09,$02,$02,$08
|
|
!byte $08,$0a,$0a,$0f,$0f
|
|
!byte $07,$07,$01,$01,$01
|
|
!byte $01,$01,$01,$01,$01
|
|
!byte $01,$01,$01,$01,$01
|
|
!byte $01,$01,$01,$07,$07
|
|
!byte $0f,$0f,$0a,$0a,$08
|
|
!byte $08,$02,$02,$09,$09
|
|
|
|
color2 !byte $09,$09,$02,$02,$08
|
|
!byte $08,$0a,$0a,$0f,$0f
|
|
!byte $07,$07,$01,$01,$01
|
|
!byte $01,$01,$01,$01,$01
|
|
!byte $01,$01,$01,$01,$01
|
|
!byte $01,$01,$01,$07,$07
|
|
!byte $0f,$0f,$0a,$0a,$08
|
|
!byte $08,$02,$02,$09,$09
|