adjust color offsets
This commit is contained in:
8
colors.S
8
colors.S
@ -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
|
||||||
|
|
||||||
|
4
colors.h
4
colors.h
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user