From: ol.sc Date: Mon, 2 Jan 2012 12:45:25 +0000 (+0000) Subject: Fixed type in target name (it is not supposed to be "geos-apple2") and adjusted the... X-Git-Tag: V2.13.3~97 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=110bbeafde7d003a38579348018dbc8eb856560d;p=cc65 Fixed type in target name (it is not supposed to be "geos-apple2") and adjusted the CPU attribute to 65C02 as Apple GEOS only runs on newer Apple machines with 128kB anyway. git-svn-id: svn://svn.cc65.org/cc65/trunk@5368 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/common/target.c b/src/common/target.c index 475f22797..2d1eb60b3 100644 --- a/src/common/target.c +++ b/src/common/target.c @@ -166,7 +166,7 @@ static const TargetProperties PropertyTable[TGT_COUNT] = { { "apple2", CPU_6502, CTNone }, { "apple2enh", CPU_65C02, CTNone }, { "geos-cbm", CPU_6502, CTNone }, - { "geos-apple2", CPU_6502, CTNone }, + { "geos-apple", CPU_65C02, CTNone }, { "lunix", CPU_6502, CTNone }, { "atmos", CPU_6502, CTNone }, { "nes", CPU_6502, CTNone },