* bugfixes

+ added mpw support
This commit is contained in:
carl 1998-10-07 04:26:58 +00:00
parent a754787fe3
commit 4fbd1d5fac

View File

@ -66,7 +66,7 @@ unit systems;
as_tasm, as_masm as_tasm, as_masm
{$endif} {$endif}
{$ifdef m68k} {$ifdef m68k}
as_o,as_gas,as_mit,as_mot as_o,as_gas,as_mit,as_mot,as_mpw
{$endif} {$endif}
); );
@ -439,7 +439,7 @@ implementation
asmbin : 'as68k'; { Gas for the Amiga} asmbin : 'as68k'; { Gas for the Amiga}
asmcmd : '--register-prefix-optional -o $OBJ $ASM'; asmcmd : '--register-prefix-optional -o $OBJ $ASM';
externals : false; externals : false;
labelprefix : '__L'; labelprefix : '.L';
comment : '| ' comment : '| '
) )
,( ,(
@ -448,7 +448,7 @@ implementation
asmbin : ''; asmbin : '';
asmcmd : '-o $OBJ $ASM'; asmcmd : '-o $OBJ $ASM';
externals : false; externals : false;
labelprefix : '__L'; labelprefix : '.L';
comment : '| ' comment : '| '
) )
,( ,(
@ -460,6 +460,15 @@ implementation
labelprefix : '__L'; labelprefix : '__L';
comment : '| ' comment : '| '
) )
,(
id : as_mpw;
idtxt : 'MPW';
asmbin : '';
asmcmd : '-model far -o $OBJ $ASM';
externals : false;
labelprefix : '__L';
comment : '| '
)
{$endif m68k} {$endif m68k}
); );
@ -710,7 +719,7 @@ implementation
unitlibext : '.ppl'; unitlibext : '.ppl';
asmext : '.s'; asmext : '.s';
objext : '.o'; objext : '.o';
exeext : ''; exeext : '.ttp';
os : os_Atari; os : os_Atari;
link : link_ld; link : link_ld;
assem : as_o; assem : as_o;
@ -727,12 +736,12 @@ implementation
smartext : '.sl'; smartext : '.sl';
unitext : '.ppt'; unitext : '.ppt';
unitlibext : '.ppl'; unitlibext : '.ppl';
asmext : '.s'; asmext : '.a';
objext : '.o'; objext : '.o';
exeext : ''; exeext : '';
os : os_Mac68k; os : os_Mac68k;
link : link_ld; link : link_ld;
assem : as_o; assem : as_mpw;
ar : ar_ar; ar : ar_ar;
heapsize : 128*1024; heapsize : 128*1024;
maxheapsize : 32768*1024; maxheapsize : 32768*1024;
@ -918,7 +927,11 @@ begin
end. end.
{ {
$Log$ $Log$
Revision 1.37 1998-10-06 20:40:58 peter Revision 1.38 1998-10-07 04:26:58 carl
* bugfixes
+ added mpw support
Revision 1.37 1998/10/06 20:40:58 peter
* remove -D from assemblers * remove -D from assemblers
Revision 1.36 1998/09/16 16:41:50 peter Revision 1.36 1998/09/16 16:41:50 peter