Separated the emulation features in a module.

Add a new command line option --feature that allows to set emulation
features from the command line.


git-svn-id: svn://svn.cc65.org/cc65/trunk@311 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-09-02 11:35:22 +00:00
parent f55d0ccee1
commit 6288682343
8 changed files with 248 additions and 35 deletions

View File

@@ -493,6 +493,18 @@ static void NextChar (void)
void LocaseSVal (void)
/* Make SVal lower case */
{
unsigned I = 0;
while (SVal [I]) {
SVal [I] = tolower (SVal [I]);
++I;
}
}
void UpcaseSVal (void)
/* Make SVal upper case */
{