home *** CD-ROM | disk | FTP | other *** search
/ messroms.de / 2007-01-13_www.messroms.de.zip / VZ200 / TOOLS / ZCCSRC.ZIP / LOG < prev    next >
Text File  |  1995-12-22  |  1KB  |  24 lines

  1. 0.94    First released version
  2.  
  3. 0.95    Converted 0crt.asm to Z80 opcodes.  Changed some JPs to JRs.
  4.     Removed i8085 files from distribution, available separately.
  5.     Tried compiling with lcc, found a couple of bugs:
  6.         Made ctype[] unsigned char to get 8 bits.
  7.         Unary - of unsigned int seems harmless, but keep in mind.
  8.         lcc doesn't like liberties taken in scc code at all.
  9.     Got modified cpp from Michael Haardt which does ANSI stringification.
  10.     Made scc ignore plain # (same as #line) directives.
  11.     Changed hello.c to take advantage of stringification.
  12.     Updated README for new resources.
  13.  
  14. 0.96    Added ANSI C concatenation of adjacent strings.
  15.     Changed hello.c to take advantage of this.
  16.     Moved lib and include to first level.
  17.     Added pseudojumps to assembler. These assemble to JR whenever
  18.     possible, but JP in worst case. Use with caution.
  19.     Modified compiler to take advantage of this.
  20.     Fixed bug that allowed jr m,dest which is not a legal opcode.
  21.     Added a peephole optimiser: Chris Fraser's copt
  22.     Modified compiler to generate extra information needed by pho
  23.     Added -O flag to zcc to enable optimiser
  24.