1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 01:29:37 +00:00

Pass the memory model to the compiler

git-svn-id: svn://svn.cc65.org/cc65/trunk@2685 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-11-25 18:37:05 +00:00
parent 349c94f9a2
commit 9fea0c5c42

View File

@ -908,6 +908,7 @@ static void OptMemoryModel (const char* Opt attribute ((unused)), const char* Ar
Error ("Unsupported memory model: %s", Arg);
} else {
CmdAddArg2 (&CA65, "-mm", Arg);
CmdAddArg2 (&CC65, "-mm", Arg);
}
}