Version 3 of the XZI.COM file involved fixing an obscure glitch: Z80 code converted to 8080 code ----------------------------------------- LD SP,(LABEL) LXI SP,(LABEL) this was incorrect, it should have just put out an error as there is no 8080 equivalent, the following was already correct: LD SP,LABEL LXI SP,LABEL The program now puts out: LD SP,(LABEL) # LD SP,(LABEL) and puts the error in the list of untranslated opcodes. - Irv Hoff W6FFC - 06 June 86 (415) 948-2166 - voice (P.S. This same error was in several translators other than just XZI. For instance, the ZTOI translator puts out: LD SP,(LABEL) LSPD LABEL which is quite unacceptable. XLT8-80 and ZLTZ80 both put out put out the same error that XZI formerly put out, shown above.