From 0e52d476cf4c4e4100cff4a7c02ee67c3944b56d Mon Sep 17 00:00:00 2001 From: johanknol Date: Thu, 29 Mar 2001 12:55:03 +0000 Subject: [PATCH] removed --noregparms because it is obsolete and caused problems with e.g. --int-long-reent and --stack-auto removed some other obsolete switches (Lx etc) fixed -Wa git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@717 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/ds390/main.c | 2 +- src/mcs51/main.c | 2 +- src/z80/gbz80.c | 1 - src/z80/main.c | 1 - 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ds390/main.c b/src/ds390/main.c index ee85833a..f22ce997 100644 --- a/src/ds390/main.c +++ b/src/ds390/main.c @@ -192,7 +192,7 @@ static const char *_linkCmd[] = static const char *_asmCmd[] = { - "asx8051", "-plosgff", "$1.asm", NULL + "asx8051", "$l", "-plosgff", "$1.asm", NULL }; /* Globals */ diff --git a/src/mcs51/main.c b/src/mcs51/main.c index 99484c84..fd112809 100644 --- a/src/mcs51/main.c +++ b/src/mcs51/main.c @@ -132,7 +132,7 @@ static const char *_linkCmd[] = static const char *_asmCmd[] = { - "asx8051", "-plosgffc", "$1.asm", NULL + "asx8051", "$l", "-plosgffc", "$1.asm", NULL }; /* Globals */ diff --git a/src/z80/gbz80.c b/src/z80/gbz80.c index b24c932f..27aca8c1 100644 --- a/src/z80/gbz80.c +++ b/src/z80/gbz80.c @@ -42,7 +42,6 @@ _gbz80_setDefaultOptions (void) options.nopeep = 0; options.stackAuto = 1; options.mainreturn = 1; - options.noregparms = 1; /* first the options part */ options.intlong_rent = 1; diff --git a/src/z80/main.c b/src/z80/main.c index 78dfad94..381a673f 100644 --- a/src/z80/main.c +++ b/src/z80/main.c @@ -259,7 +259,6 @@ _setDefaultOptions (void) options.nopeep = 0; options.stackAuto = 1; options.mainreturn = 1; - options.noregparms = 1; options.nodebug = 1; /* first the options part */ options.intlong_rent = 1; -- 2.47.2