home *** CD-ROM | disk | FTP | other *** search
/ messroms.de / 2007-01-13_www.messroms.de.zip / VZ200 / TOOLS / AZ80.ZIP / readme.txt < prev   
Text File  |  1999-12-27  |  2KB  |  49 lines

  1. AZ80 ver 0.2 - freeware Z80 assembler
  2.  
  3. This software is free for any use. The author cannot be held
  4. responsible for any problems it might cause, in no case. If
  5. you don't understand or accept this, delete az80 immediately.
  6.  
  7. Purpose:
  8.   AZ80 was written as a lex/yacc exercise :) Lex and Yacc are some
  9.   compiler tools (lexical analyzer and 'yet another compiler compiler').
  10.   AZ80 was written to assemble some tools for the Colour Genie
  11.   on the PC and transfer them to the emulator.
  12.  
  13. Operation:
  14.   az80 [options] source[.z80] [output[.bin] [listing[.lst]]
  15.   source is the filename of a Z80 assembly language program.
  16.   The default extension is .z80 and is appended, if you omit a
  17.   dot in the filename. The output is by default <filename of source>.bin,
  18.   or .cas (if you specify the emit cassette format options).
  19.   The listing is <filename of source>.lst, unless you specify a
  20.   different name.
  21.   The options can be one or more of:
  22.   -d  debug the lexical analyzer and parser output (don't do it! ;)
  23.   -l  generate listing (off by default)
  24.   -s  output symbol table
  25.   -t  create cassette tape format (either Colour Genie .cas or
  26.       Vidtech VZ200/300 .vz iamge format). The first ORG defines
  27.       the load address.
  28.   -x  output cross references with the symbol table
  29.  
  30. Default keywords:
  31.   DEFB    define byte(s), eg. DEFB 1,2,3,4 or DEFB 12h,34h,56h
  32.   DEFL    define label
  33.   DEFM    define message, eg. DEFM "ABCD"
  34.   DEFW    define word(s), eg. DEFW 7000h, 01c9h
  35.   EQU    define symbol, eg. offs EQU 10
  36.   ORG    set origin of program code, eg. ORG 8000h
  37.  
  38. Note:
  39.   The expression analyzer is not very intelligent.
  40.   I fixed some bugs and also added parenthesis expressions,
  41.   however this isn't tested very well. Feel free to improve
  42.   the assembler. Source is included :)
  43.  
  44. Regards,
  45.  
  46. Juergen Buchmueller <pullmoll@t-online.de>
  47.  
  48.  
  49.