adjust color offsets

This commit is contained in:
2024-02-29 18:13:58 +01:00
parent 42c06f0da4
commit 86fb74bd49
2 changed files with 6 additions and 6 deletions

View File

@ -17,8 +17,8 @@ screendataend_tmpl:
colors: colors:
.global colors .global colors
;; red, green, blue, padding ;; red, green, blue, padding
red: off:
.byte 0xff, 0x00, 0x00, 0 .byte 0x00, 0x00, 0x00, 0
blue: blue:
.byte 0x00, 0x00, 0xff, 0 .byte 0x00, 0x00, 0xff, 0
green: green:
@ -43,6 +43,6 @@ yellow:
.byte 0xff, 0xff, 0x00, 0 .byte 0xff, 0xff, 0x00, 0
white: white:
.byte 0xff, 0xff, 0xff, 0 .byte 0xff, 0xff, 0xff, 0
off: red:
.byte 0x00, 0x00, 0x00, 0 .byte 0xff, 0x00, 0x00, 0

View File

@ -2,7 +2,7 @@
#define _COLORS_H_ #define _COLORS_H_
#define _red 0x00 #define _off 0x00
#define _blue 0x01 #define _blue 0x01
#define _green 0x02 #define _green 0x02
#define _orange 0x03 #define _orange 0x03
@ -15,7 +15,7 @@
#define _chartreuse 0x0a #define _chartreuse 0x0a
#define _yellow 0x0b #define _yellow 0x0b
#define _white 0x0c #define _white 0x0c
#define _off 0x0d #define _red 0x0d