]> git.sur5r.net Git - cc65/commitdiff
Fixed emd driver names for atari-xl and apple2e. 237/head
authorMarco van den Heuvel <blackystardust68@yahoo.com>
Mon, 30 Nov 2015 18:15:28 +0000 (10:15 -0800)
committerMarco van den Heuvel <blackystardust68@yahoo.com>
Mon, 30 Nov 2015 18:15:28 +0000 (10:15 -0800)
testcode/lib/em-test.c

index 4a08d57c43ea8bb1c44e30ef33bc822caf1fd690..f4a56029a2b13184f28933be4db5a2f9bcaf86e4 100644 (file)
@@ -58,7 +58,7 @@ typedef struct emd_test_s {
 static emd_test_t drivers[] = {
 
 #if defined(__APPLE2__)
-    { '0', "Apple II auxiliary memory", "a2e.auxmem.emd" },
+    { '0', "Apple II auxiliary memory", "a2.auxmem.emd" },
 #endif
 
 #if defined(__APPLE2ENH__)
@@ -70,7 +70,7 @@ static emd_test_t drivers[] = {
 #endif
 
 #if defined(__ATARIXL__)
-    { '0', "Atari 130XE memory", "atr130.emd" },
+    { '0', "Atari 130XE memory", "atrx130.emd" },
 #endif
 
 #if defined(__C16__)