diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-12-01 22:18:13 -0500 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-12-01 22:18:13 -0500 |
| commit | cf5910b30d9feab5bebed3cc3dea30aae6afffdb (patch) | |
| tree | d89c271c6c954e17b3718b85de595a753277210d | |
| parent | 68e23a2684a5c68d286527178693e0bb95567792 (diff) | |
| download | minos-cf5910b30d9feab5bebed3cc3dea30aae6afffdb.tar.gz | |
Initial commit
| -rw-r--r-- | colors.asm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/colors.asm b/colors.asm new file mode 100644 index 0000000..ff9dca0 --- /dev/null +++ b/colors.asm @@ -0,0 +1,21 @@ +%ifndef _COLORS_ASM +%define _COLORS_ASM + +COLOR_BLACK equ 0, +COLOR_BLUE equ 1, +COLOR_GREEN equ 2, +COLOR_CYAN equ 3, +COLOR_RED equ 4, +COLOR_MAGENTA equ 5, +COLOR_BROWN equ 6, +COLOR_LIGHT_GREY equ 7, +COLOR_DARK_GREY equ 8, +COLOR_LIGHT_BLUE equ 9, +COLOR_LIGHT_GREEN equ 10, +COLOR_LIGHT_CYAN equ 11, +COLOR_LIGHT_RED equ 12, +COLOR_LIGHT_MAGENTA equ 13, +COLOR_LIGHT_BROWN equ 14, +COLOR_WHITE equ 15, + +%endif |
