Chip8Suite/include/config.h
2025-02-09 18:47:04 -05:00

16 lines
320 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_DISPLAY_WIDTH 63
#define CHIP8_DISPLAY_HEIGHT 32
#define CHIP8_TOTAL_DATA_REGISTERS 16
#define CHIP8_TOTAL_STACK_DEPTH 16
#define CHIP8_TOTAL_KEYS 16
#endif