mirror of
https://github.com/jscrane/Apple1.git
synced 2024-10-31 12:05:16 +00:00
32 lines
492 B
C
32 lines
492 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
#if defined(USE_SPIRAM)
|
|
#define RAM_SIZE 0x3000
|
|
#define SPIRAM_BASE 0x3000
|
|
#define SPIRAM_EXTENT (20 * 1024 / 256)
|
|
#else
|
|
#define RAM_SIZE 0x8000
|
|
#endif
|
|
|
|
#define CPU_INSTRUCTIONS 1000
|
|
|
|
#define TFT_FG GREEN
|
|
#define TFT_BG BLACK
|
|
|
|
#if defined(USE_UTFT)
|
|
#define TFT_ORIENT landscape
|
|
#elif defined(USE_ESPI)
|
|
#define TFT_ORIENT reverse_landscape
|
|
#endif
|
|
|
|
#if defined(USE_SD)
|
|
#define PROGRAMS "/apple1/"
|
|
#else
|
|
#define PROGRAMS "/"
|
|
#endif
|
|
|
|
#define KRUSADER
|
|
|
|
#endif
|