21 lines
447 B
C

#ifndef __CONFIG_H
#define __CONFIG_H
#define EMULATOR_WINDOW_TITLE "Chip8"
#define EMULATOR_WINDOW_MULTIPLIER 10
#define CHIP8_MEMORY_SIZE 4096
#define CHIP8_PROGRAM_LOAD_ADDRESS 0x200
#define CHIP8_DISPLAY_WIDTH 64
#define CHIP8_DISPLAY_HEIGHT 32
#define CHIP8_TOTAL_DATA_REGISTERS 16
#define CHIP8_TOTAL_STACK_DEPTH 16
#define CHIP8_TOTAL_KEYS 16
#define CHIP8_CHARACTER_SET_LOAD_ADDRESS 0x00
#define CHIP8_SPRITE_DEFAULT_HEIGHT 5
#endif