===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
z80asm-1.8/COPYING-5-
z80asm-1.8/COPYING:6:Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/COPYING-7-it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/COPYING-10-
z80asm-1.8/COPYING:11:Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/COPYING-12-but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/ChangeLog-128-	add_include, parse_commandline, assemble, main): Use include path.
z80asm-1.8/ChangeLog:129:	* z80asm (parse_commandline): Make stderr default for list and label
z80asm-1.8/ChangeLog-130-	files.
##############################################
z80asm-1.8/ChangeLog-158-
z80asm-1.8/ChangeLog:159:	* z80asm (rd_comma): Fixed possible buffer overflow.
z80asm-1.8/ChangeLog:160:	* z80asm (parse_commandline): Improved --help output.
z80asm-1.8/ChangeLog:161:	* z80asm (new_reference): Removed useless ++.
z80asm-1.8/ChangeLog:162:	* z80asm (wrt_ref, assemble): Improved list output for ds.
z80asm-1.8/ChangeLog-163-
##############################################
z80asm-1.8/INSTALL-7-
z80asm-1.8/INSTALL:8:To install, copy the file z80asm into your search path, for example in
z80asm-1.8/INSTALL-9-/usr/local/bin or in ~/bin (you may need to put this in the search path)
##############################################
z80asm-1.8/Makefile-5-#
z80asm-1.8/Makefile:6:# Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/Makefile-7-# it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/Makefile-10-#
z80asm-1.8/Makefile:11:# Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/Makefile-12-# but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/Makefile-21-SHELL = /bin/bash
z80asm-1.8/Makefile:22:VERSION ?= $(shell echo -n `cat VERSION | cut -d. -f1`. ; echo $$[`cat VERSION | cut -d. -f2` + 1])
z80asm-1.8/Makefile-23-
##############################################
z80asm-1.8/Makefile-36-	done
z80asm-1.8/Makefile:37:	rm -f z80asm z80asm.exe
z80asm-1.8/Makefile-38-
##############################################
z80asm-1.8/examples/Makefile-5-#
z80asm-1.8/examples/Makefile:6:# Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/examples/Makefile-7-# it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/examples/Makefile-10-#
z80asm-1.8/examples/Makefile:11:# Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/examples/Makefile-12-# but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/examples/Makefile-24-%.rom: %.asm
z80asm-1.8/examples/Makefile:25:	z80asm $< -o $@
##############################################
z80asm-1.8/examples/hello.asm-5-;
z80asm-1.8/examples/hello.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/examples/hello.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/examples/hello.asm-10-;
z80asm-1.8/examples/hello.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/examples/hello.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/examples/macro.asm:1:; macro.asm - usage of macros
z80asm-1.8/examples/macro.asm-2-; Copyright 2005 Bas Wijnen <wijnen@debian.org>
##############################################
z80asm-1.8/examples/macro.asm-5-;
z80asm-1.8/examples/macro.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/examples/macro.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/examples/macro.asm-10-;
z80asm-1.8/examples/macro.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/examples/macro.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/examples/seek.asm:1:; seek.asm - seek example
z80asm-1.8/examples/seek.asm-2-; Copyright 2005 jancasper
##############################################
z80asm-1.8/examples/seek.asm-5-;
z80asm-1.8/examples/seek.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/examples/seek.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/examples/seek.asm-10-;
z80asm-1.8/examples/seek.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/examples/seek.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/expressions.c-7-
z80asm-1.8/expressions.c:8:   Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/expressions.c-9-   it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/expressions.c-12-
z80asm-1.8/expressions.c:13:   Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/expressions.c-14-   but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/headers/msx-bios.asm:1:; msx-bios.asm - BIOS calls for the MSX computer
z80asm-1.8/headers/msx-bios.asm-2-; Copyright 2005  Bas Wijnen <wijnen@debian.org>
##############################################
z80asm-1.8/headers/msx-bios.asm-5-;
z80asm-1.8/headers/msx-bios.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/headers/msx-bios.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/headers/msx-bios.asm-10-;
z80asm-1.8/headers/msx-bios.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/headers/msx-bios.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/headers/msx2+-bios.asm:1:; msx2+-bios.asm - BIOS calls for the MSX computer
z80asm-1.8/headers/msx2+-bios.asm-2-; Copyright 2005  Bas Wijnen <wijnen@debian.org>
##############################################
z80asm-1.8/headers/msx2+-bios.asm-5-;
z80asm-1.8/headers/msx2+-bios.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/headers/msx2+-bios.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/headers/msx2+-bios.asm-10-;
z80asm-1.8/headers/msx2+-bios.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/headers/msx2+-bios.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/headers/msx2-bios.asm:1:; msx2-bios.asm - BIOS calls for the MSX computer
z80asm-1.8/headers/msx2-bios.asm-2-; Copyright 2005  Bas Wijnen <wijnen@debian.org>
##############################################
z80asm-1.8/headers/msx2-bios.asm-5-;
z80asm-1.8/headers/msx2-bios.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/headers/msx2-bios.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/headers/msx2-bios.asm-10-;
z80asm-1.8/headers/msx2-bios.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/headers/msx2-bios.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/headers/msx2-subrom.asm:1:; msx2-subrom.asm - BIOS calls for the MSX computer
z80asm-1.8/headers/msx2-subrom.asm-2-; Copyright 2005  Bas Wijnen <wijnen@debian.org>
##############################################
z80asm-1.8/headers/msx2-subrom.asm-5-;
z80asm-1.8/headers/msx2-subrom.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/headers/msx2-subrom.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/headers/msx2-subrom.asm-10-;
z80asm-1.8/headers/msx2-subrom.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/headers/msx2-subrom.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/headers/msxturbor-bios.asm:1:; msxturbor-bios.asm - BIOS calls for the MSX computer
z80asm-1.8/headers/msxturbor-bios.asm-2-; Copyright 2005  Bas Wijnen <wijnen@debian.org>
##############################################
z80asm-1.8/headers/msxturbor-bios.asm-5-;
z80asm-1.8/headers/msxturbor-bios.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/headers/msxturbor-bios.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/headers/msxturbor-bios.asm-10-;
z80asm-1.8/headers/msxturbor-bios.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/headers/msxturbor-bios.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/tests/Makefile-5-#
z80asm-1.8/tests/Makefile:6:# Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/tests/Makefile-7-# it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/tests/Makefile-10-#
z80asm-1.8/tests/Makefile:11:# Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/tests/Makefile-12-# but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/tests/Makefile-22-
z80asm-1.8/tests/Makefile:23:%: %.asm %.correct-err %.correct-bin ../z80asm Makefile
z80asm-1.8/tests/Makefile:24:	../z80asm -I ../headers $< -o $@.bin 2> $@.err
z80asm-1.8/tests/Makefile-25-	diff $@.correct-bin $@.bin
##############################################
z80asm-1.8/tests/pass.asm:1:; pass.asm - test program which should pass compilation (with warnings)
z80asm-1.8/tests/pass.asm-2-; Copyright 2002-2007  Bas Wijnen
##############################################
z80asm-1.8/tests/pass.asm-5-;
z80asm-1.8/tests/pass.asm:6:; Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/tests/pass.asm-7-; it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/tests/pass.asm-10-;
z80asm-1.8/tests/pass.asm:11:; Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/tests/pass.asm-12-; but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/z80asm.1-5-.\"
z80asm-1.8/z80asm.1:6:.\" Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/z80asm.1-7-.\" it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/z80asm.1-10-.\"
z80asm-1.8/z80asm.1:11:.\" Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/z80asm.1-12-.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/z80asm.1-22-.\" other parameters are allowed: see man(7), man(1)
z80asm-1.8/z80asm.1:23:.TH Z80ASM 1 "May 10, 2005"
z80asm-1.8/z80asm.1-24-.\" Please adjust this date whenever revising the manpage.
##############################################
z80asm-1.8/z80asm.1-36-.SH NAME
z80asm-1.8/z80asm.1:37:z80asm \- assembler for the Z80 microprocessor
z80asm-1.8/z80asm.1-38-.SH SYNOPSIS
##############################################
z80asm-1.8/z80asm.1-41-.SH DESCRIPTION
z80asm-1.8/z80asm.1:42:Z80asm is an assembler for Z80 assembly.
z80asm-1.8/z80asm.1-43-If no input files are specified, stdin is used.  If no output file is
##############################################
z80asm-1.8/z80asm.1-314-.SH AUTHOR
z80asm-1.8/z80asm.1:315:Z80asm was written by Bas Wijnen <wijnen@debian.org>.
z80asm-1.8/z80asm.1-316-Some patches were provided by Jan Wilmans <jw@dds.nl>
##############################################
z80asm-1.8/z80asm.c-7-
z80asm-1.8/z80asm.c:8:   Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/z80asm.c-9-   it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/z80asm.c-12-
z80asm-1.8/z80asm.c:13:   Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/z80asm.c-14-   but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/z80asm.c-246-    }
z80asm-1.8/z80asm.c:247:  /* only asm is currently supported */
z80asm-1.8/z80asm.c-248-  infile[infilecount].type = FILETYPE_ASM;
##############################################
z80asm-1.8/z80asm.c-855-static void
z80asm-1.8/z80asm.c:856:rd_wrt_addr (const char **p, char delimiter)
z80asm-1.8/z80asm.c-857-{
##############################################
z80asm-1.8/z80asm.c-1901-		}
z80asm-1.8/z80asm.c:1902:	      rd_wrt_addr (&ptr, '\0');
z80asm-1.8/z80asm.c-1903-	      break;
##############################################
z80asm-1.8/z80asm.c-2071-		}
z80asm-1.8/z80asm.c:2072:	      rd_wrt_addr (&ptr, '\0');
z80asm-1.8/z80asm.c-2073-	      break;
##############################################
z80asm-1.8/z80asm.h-7-
z80asm-1.8/z80asm.h:8:   Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/z80asm.h-9-   it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/z80asm.h-12-
z80asm-1.8/z80asm.h:13:   Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/z80asm.h-14-   but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/debian/changelog:1:z80asm (1.8-1) unstable; urgency=low
z80asm-1.8/debian/changelog-2-
##############################################
z80asm-1.8/debian/changelog-8-
z80asm-1.8/debian/changelog:9:z80asm (1.6-1) unstable; urgency=low
z80asm-1.8/debian/changelog-10-
##############################################
z80asm-1.8/debian/changelog-16-
z80asm-1.8/debian/changelog:17:z80asm (1.5-1) unstable; urgency=high
z80asm-1.8/debian/changelog-18-
##############################################
z80asm-1.8/debian/changelog-24-
z80asm-1.8/debian/changelog:25:z80asm (1.4-1) unstable; urgency=low
z80asm-1.8/debian/changelog-26-
##############################################
z80asm-1.8/debian/changelog-30-
z80asm-1.8/debian/changelog:31:z80asm (1.3-1) unstable; urgency=low
z80asm-1.8/debian/changelog-32-
##############################################
z80asm-1.8/debian/changelog-38-
z80asm-1.8/debian/changelog:39:z80asm (1.2-1) unstable; urgency=low
z80asm-1.8/debian/changelog-40-
##############################################
z80asm-1.8/debian/changelog-44-
z80asm-1.8/debian/changelog:45:z80asm (1.1-1) unstable; urgency=low
z80asm-1.8/debian/changelog-46-
##############################################
z80asm-1.8/debian/copyright-8-
z80asm-1.8/debian/copyright:9:   Z80asm is free software; you can redistribute it and/or modify
z80asm-1.8/debian/copyright-10-   it under the terms of the GNU General Public License as published by
##############################################
z80asm-1.8/debian/copyright-13-
z80asm-1.8/debian/copyright:14:   Z80asm is distributed in the hope that it will be useful,
z80asm-1.8/debian/copyright-15-   but WITHOUT ANY WARRANTY; without even the implied warranty of
##############################################
z80asm-1.8/debian/z80asm.install:1:z80asm /usr/bin
z80asm-1.8/debian/z80asm.install-2-headers /usr/share/z80asm