mirror of
https://github.com/jscrane/Apple1.git
synced 2025-01-02 12:31:08 +00:00
17 lines
265 B
C
17 lines
265 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
#define RAM_SIZE 0x3000
|
|
#define SPIRAM_BASE 0x3000
|
|
#define SPIRAM_EXTENT (20 * 1024 / 256)
|
|
|
|
#define CPU_INSTRUCTIONS 1000
|
|
|
|
#define TFT_FG VGA_LIME
|
|
#define TFT_BG VGA_BLACK
|
|
#define PROGRAMS "/apple1/"
|
|
|
|
#define KRUSADER 1
|
|
|
|
#endif
|