diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-23 14:32:43 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2021-07-23 14:32:43 +0100 |
commit | 6be26e82cf54b9b3ce8fd70af25cb969c1079525 (patch) | |
tree | f57abca83bad24f39bd7f7b4b3b348b8ff57269e /config.h | |
parent | Feature: Implemented background and foreround color customizability (diff) | |
download | CHIP8-Emulator-6be26e82cf54b9b3ce8fd70af25cb969c1079525.tar.gz CHIP8-Emulator-6be26e82cf54b9b3ce8fd70af25cb969c1079525.tar.bz2 CHIP8-Emulator-6be26e82cf54b9b3ce8fd70af25cb969c1079525.zip |
Feature: Implemented various instructions
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config.h b/config.h index 1656026..b318965 100644 --- a/config.h +++ b/config.h @@ -6,13 +6,13 @@ #define SCREEN_WIDTH 852 #define SCREEN_HEIGHT 480 -#define INSTRUCTIONS_PER_SECOND 700 -#define TIMERS_THREAD_FREQUENCY 60 +#define INSTRUCTIONS_PER_SECOND 700 //Default: 700 +#define TIMERS_THREAD_FREQUENCY 60 //Default: 60 #define GAME_LOAD_LOCATION 0x200 #define FONT_LOAD_LOCATION 0x50 -#define FOREGROUND_COLOR 0x00FFFFFF -#define BLACKGROUND_COLOR 0xFF000000 +#define FOREGROUND_COLOR 0x00F00FFF //Default: 0x00FFFFFF +#define BLACKGROUND_COLOR 0xFF000000 //Default: 0xFF000000 #define dbgprintf(fmt, ...) \ do { if(DEBUG) fprintf (stdout, fmt, ##__VA_ARGS__); } while(0) |