1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Fixed emd driver names for atari-xl and apple2e.

This commit is contained in:
Marco van den Heuvel 2015-11-30 10:15:28 -08:00
parent 97c9ed3273
commit 3a01ba9509

View 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__)