about summary refs log tree commit diff
path: root/config.h
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-23 01:11:13 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-23 01:11:13 +0100
commitd4dcfd81f2332bcb766d4c7de257bcc848faf494 (patch)
treef34ca5c6a86995148022d8e54fe92f8a089038b1 /config.h
parentFeature: Implemented reload and exit key behaviour (diff)
downloadCHIP8-Emulator-d4dcfd81f2332bcb766d4c7de257bcc848faf494.tar.gz
CHIP8-Emulator-d4dcfd81f2332bcb766d4c7de257bcc848faf494.tar.bz2
CHIP8-Emulator-d4dcfd81f2332bcb766d4c7de257bcc848faf494.zip
Feature: Implemented background and foreround color customizability
Diffstat (limited to 'config.h')
-rw-r--r--config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h b/config.h
index 07f52e8..1656026 100644
--- a/config.h
+++ b/config.h
@@ -11,6 +11,9 @@
 #define GAME_LOAD_LOCATION 0x200
 #define FONT_LOAD_LOCATION 0x50
 
+#define FOREGROUND_COLOR 0x00FFFFFF
+#define BLACKGROUND_COLOR 0xFF000000
+
 #define dbgprintf(fmt, ...) \
      do { if(DEBUG) fprintf (stdout, fmt, ##__VA_ARGS__); } while(0)