From 7f736ceccbe49c99056f88e31e1cfabfa58f965d Mon Sep 17 00:00:00 2001 From: marcobaye Date: Sun, 21 Jun 2020 17:24:38 +0000 Subject: [PATCH] added "nmos6502" as an alias for "6510" git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@250 4df02467-bbd4-4a76-a152-e7ce94205b78 --- src/cpu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cpu.c b/src/cpu.c index cb2b126..a397708 100644 --- a/src/cpu.c +++ b/src/cpu.c @@ -73,9 +73,10 @@ static struct cpu_type cpu_type_m65 = { // predefined stuff static struct ronode *cputype_tree = NULL; static struct ronode cputype_list[] = { -#define KNOWN_TYPES "'6502', '6510', '65c02', 'r65c02', 'w65c02', '65816', '65ce02', '4502', 'm65', 'c64dtv2'" // shown in CLI error message for unknown types +#define KNOWN_TYPES "'6502', 'nmos6502', '6510', '65c02', 'r65c02', 'w65c02', '65816', '65ce02', '4502', 'm65', 'c64dtv2'" // shown in CLI error message for unknown types // PREDEFNODE("z80", &cpu_type_Z80), PREDEFNODE("6502", &cpu_type_6502), + PREDEFNODE("nmos6502", &cpu_type_nmos6502), PREDEFNODE("6510", &cpu_type_nmos6502), PREDEFNODE("65c02", &cpu_type_65c02), PREDEFNODE("r65c02", &cpu_type_r65c02),