dust-tutorial-c64-first-intro/code/data_colorwash.asm
2013-04-14 21:25:16 +02:00

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