Re: A83: Re: Re: Linux Z80 Compiler
[Prev][Next][Index][Thread]
Re: A83: Re: Re: Linux Z80 Compiler
> I recommend usinh the z80asm assembler included with z88dk under Linux,
> but you'll have to use a few regexps to make your source compatible. For
> example under VI:
> :1,$s/^\([A-Za-z0-9]*\):$/.\1/
> will 'update' labels, for more info see 'man 7 regex'.
The bad thing about Z80ASM is that...
It doesn't understand macros!
Henk Poley
----
PS: for the newbies, macro's are things like this:
#define foobar
...
[code]
...
#ifdef foobar
...
#endif
You can also use them to hold a variable:
#define LD_HL_MHL 0033h
...
call LD_HL_MHL
Follow-Ups: