mirror of
https://github.com/cc65/cc65.git
synced 2024-12-21 20:29:24 +00:00
Some CPU definition changes
git-svn-id: svn://svn.cc65.org/cc65/trunk@2248 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
0192932e2c
commit
33d16833f0
@ -166,7 +166,7 @@ void g_preamble (void)
|
||||
|
||||
/* If we're producing code for some other CPU, switch the command set */
|
||||
if (CPU == CPU_65C02) {
|
||||
AddTextLine ("\t.pc02");
|
||||
AddTextLine ("\t.setcpu\t\t\"65C02\"");
|
||||
}
|
||||
|
||||
/* Allow auto import for runtime library routines */
|
||||
|
@ -383,6 +383,7 @@ static void OptCreateDep (const char* Opt attribute ((unused)),
|
||||
static void OptCPU (const char* Opt, const char* Arg)
|
||||
/* Handle the --cpu option */
|
||||
{
|
||||
/* Find the CPU from the given name */
|
||||
CPU = FindCPU (Arg);
|
||||
if (CPU != CPU_6502 && CPU != CPU_65C02) {
|
||||
AbEnd ("Invalid argument for %s: `%s'", Opt, Arg);
|
||||
|
Loading…
Reference in New Issue
Block a user