Added the lynx target

git-svn-id: svn://svn.cc65.org/cc65/trunk@3217 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2004-10-08 09:23:02 +00:00
parent cfe3eda416
commit 23ef4fa172
4 changed files with 12 additions and 3 deletions

View File

@@ -65,13 +65,14 @@ const char* TargetNames [TGT_COUNT] = {
"cbm610",
"pet",
"bbc",
"apple2",
"apple2",
"apple2enh",
"geos",
"lunix",
"atmos",
"nes",
"supervision",
"lynx"
};
@@ -98,6 +99,7 @@ const cpu_t DefaultCPU[TGT_COUNT] = {
CPU_6502, /* atmos */
CPU_6502, /* nes */
CPU_65SC02, /* supervision */
CPU_65C02, /* lynx */
};
@@ -138,3 +140,4 @@ target_t FindTarget (const char* Name)