+ enable the Z80 internal asm (which doesn't work, yet) if the compiler is compiled with -dZ80_INTERNAL_ASM

git-svn-id: trunk@45215 -
This commit is contained in:
nickysn 2020-05-02 02:35:03 +00:00
parent 0794878b41
commit 950c1d1693
2 changed files with 8 additions and 0 deletions

View File

@ -750,7 +750,11 @@ unit i_embed;
Cprefix : '';
newline : #10;
dirsep : '/';
{$ifdef Z80_INTERNAL_ASM}
assem : as_z80_rel;
{$else Z80_INTERNAL_ASM}
assem : as_sdcc_sdasz80;
{$endif Z80_INTERNAL_ASM}
assemextern : as_sdcc_sdasz80;
link : ld_none;
linkextern : ld_embedded;

View File

@ -67,7 +67,11 @@ unit i_zxspectrum;
Cprefix : '';
newline : #10;
dirsep : '/';
{$ifdef Z80_INTERNAL_ASM}
assem : as_z80_rel;
{$else Z80_INTERNAL_ASM}
assem : as_sdcc_sdasz80;
{$endif Z80_INTERNAL_ASM}
assemextern : as_sdcc_sdasz80;
link : ld_none;
linkextern : ld_zxspectrum;