From 98f0ecf59ea5df33f2c73fc311324f32f704c676 Mon Sep 17 00:00:00 2001 From: Ian C Date: Wed, 21 Feb 2007 01:14:21 +0000 Subject: Added config for RAM at 0x2000. Also interface in ZX81 to notice config changes. --- source/config.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source/config.c') diff --git a/source/config.c b/source/config.c index b2abec8..433b5d6 100644 --- a/source/config.c +++ b/source/config.c @@ -33,7 +33,8 @@ const char *conf_filename = "DS81.CFG"; const char *conf_entry[DS81_NUM_CONFIG_ITEMS]= { "sticky_shift", - "average_touchscreen" + "average_touchscreen", + "static_ram_at_0x2000", }; @@ -42,6 +43,7 @@ const char *conf_entry[DS81_NUM_CONFIG_ITEMS]= int DS81_Config[DS81_NUM_CONFIG_ITEMS]= { TRUE, + FALSE, FALSE }; @@ -123,6 +125,9 @@ const char *ConfigDesc(DS81_ConfigItem item) case DS81_AVERAGE_TOUCHSCREEN: return "AVERAGE TOUCHSCREEN"; + case DS81_STATIC_RAM_AT_0x2000: + return "RAM AT 8192"; + default: return "UNKNOWN"; } -- cgit v1.2.3