├── .clang-format ├── .gitattributes ├── .gitignore ├── LICENSE ├── Linux ├── Makefile ├── Version ├── cgen │ └── Makefile ├── cpp │ └── Makefile ├── cref │ └── Makefile ├── dehuff │ └── Makefile ├── dump │ └── Makefile ├── enhuff │ └── Makefile ├── hi.mk ├── hidump │ └── Makefile ├── hidump2 │ └── Makefile ├── libr │ └── Makefile ├── libr4 │ └── Makefile ├── link │ └── Makefile ├── mkpat │ └── Makefile ├── objtohex │ └── Makefile ├── optim │ └── Makefile ├── p1 │ └── Makefile ├── version.in ├── zas │ └── Makefile ├── zas4 │ └── Makefile └── zc │ └── Makefile ├── Package ├── Readme.html ├── Readme.md ├── Readme.pdf ├── Scripts ├── getVersion.cmd ├── getVersion.pl ├── install.cmd ├── showVersion.pdf └── versionTools.pdf ├── cgen ├── _appinfo.h ├── _version.h ├── cgen.c ├── cgen.h ├── cgen.vcxproj ├── cgen.vcxproj.filters ├── native │ ├── Makefile │ └── unpack.pl └── nikitin │ ├── CGEN.HUF │ ├── LIBRARY.HUF │ ├── README.md │ ├── Readme_en.txt │ └── SOURCE.HUF ├── cpp ├── .clang-format ├── _appinfo.h ├── _version.h ├── cpp.c ├── cpp.h ├── cpp.vcxproj ├── cpp.vcxproj.filters ├── cpy.c ├── fname.c ├── getargs.c ├── missing │ ├── dirent.c │ └── dirent.h ├── version.h └── yylex.c ├── cref ├── BUILD.md ├── README.md ├── _appinfo.h ├── _version.h ├── cref.c ├── cref.licenseheader ├── cref.vcxproj ├── cref.vcxproj.filters ├── crefcmp.xlsm ├── fname.c ├── getargs.c └── missing │ ├── dirent.c │ └── dirent.h ├── dehuff ├── _appinfo.h ├── _version.h ├── decode.c ├── dehuff.c ├── dehuff.vcxproj ├── dehuff.vcxproj.filters ├── huff.h └── misc.c ├── dump ├── _appinfo.h ├── _version.h ├── dump.c ├── dump.h ├── dump.vcxproj └── dump.vcxproj.filters ├── enhuff ├── _appinfo.h ├── _version.h ├── encode.c ├── enhuff.c ├── enhuff.vcxproj ├── enhuff.vcxproj.filters ├── huff.h └── misc.c ├── hidump ├── _appinfo.h ├── _version.h ├── dump.c ├── hidump.vcxproj ├── hidump.vcxproj.filters └── version.c ├── hidump2 ├── _appinfo.h ├── _version.h ├── dump.c ├── hidump2.vcxproj ├── hidump2.vcxproj.filters └── version.c ├── hishared ├── Cbuild.props ├── Version.props ├── _version.c ├── _version.rc ├── appinfo.h ├── getVersion.cmd ├── getVersion.pl ├── hishared.vcxitems └── showVersion.h ├── hitech.sln ├── libr ├── _appinfo.h ├── _version.h ├── libr.c ├── libr.h ├── libr.vcxproj └── libr.vcxproj.filters ├── libr4 ├── _appinfo.h ├── _version.h ├── delete.c ├── extract.c ├── fname.c ├── getargs.c ├── io.c ├── libr.h ├── libr4.vcxproj ├── libr4.vcxproj.filters ├── list.c ├── main.c ├── misc.c ├── missing │ ├── dirent.c │ └── dirent.h ├── native │ └── link.rsp ├── obj.c ├── replace.c └── test │ └── 86--DLC.LIB ├── link ├── _appinfo.h ├── _version.h ├── extra.c ├── io.c ├── lib.c ├── link.h ├── link.vcxproj ├── link.vcxproj.filters ├── main.c ├── misc.c ├── native │ ├── Makefile │ ├── linqcodecmp.xlsm │ └── p.bat ├── reloc.c ├── sym.c └── text.c ├── mkpat ├── _appinfo.h ├── _version.h ├── crc16.c ├── mkpat.c ├── mkpat.h ├── mkpat.vcxproj ├── mkpat.vcxproj.filters └── test │ ├── LIBC.LIB │ ├── LIBCORIG.LIB │ ├── LIBF.LIB │ ├── LIBFORIG.LIB │ ├── LIBOVR.LIB │ ├── crt.pat │ ├── crtcpm.obj │ ├── fix.pl │ ├── h13lib.pat │ ├── h13lib.sig │ ├── libc.pat │ ├── libc80.lib │ ├── libf80.lib │ ├── nlibc.pat │ ├── nlibc.sig │ ├── olibc.pat │ ├── rrtcpm.obj │ ├── zlibc.pat │ ├── zlibc.sig │ └── zlibf.pat ├── objtohex ├── _appinfo.h ├── _version.h ├── objtohex ├── objtohex.c ├── objtohex.vcxproj └── objtohex.vcxproj.filters ├── optim ├── _appinfo.h ├── _version.h ├── optim.c ├── optim.vcxproj └── optim.vcxproj.filters ├── p1 ├── _appinfo.h ├── _version.h ├── cclass.c ├── cclass.h ├── emit.c ├── expr.c ├── lex.c ├── main.c ├── memchk.c ├── native │ ├── libtiny.lib │ └── makefile ├── op.c ├── p1.h ├── p1.vcxproj ├── p1.vcxproj.filters ├── p1codecmp.xlsm ├── program.c ├── stmt.c ├── sym.c ├── tok.h └── type.c ├── version.in ├── zas ├── _appinfo.h ├── _version.h ├── cclass.c ├── cclass.h ├── code.c ├── cpm │ └── makefile ├── expr.c ├── fname.c ├── kwd.c ├── kwd.h ├── lex.c ├── macro.c ├── main.c ├── parse.c ├── rbase.pl ├── sym.c ├── tlab.c ├── zas.h ├── zas.licenseheader ├── zas.vcxproj ├── zas.vcxproj.filters └── zascodecmp.xlsm ├── zas4 ├── _appinfo.h ├── _version.h ├── cclass.c ├── cclass.h ├── code.c ├── expr.c ├── fname.c ├── kwd.c ├── kwd.h ├── lex.c ├── macro.c ├── main.c ├── parse.c ├── readme.md ├── sym.c ├── tlab.c ├── zas.h ├── zas4.licenseheader ├── zas4.vcxproj └── zas4.vcxproj.filters └── zc ├── _appinfo.h ├── _version.h ├── getargs.c ├── missing ├── dirent.c └── dirent.h ├── os.c ├── zc.c ├── zc.h ├── zc.vcxproj └── zc.vcxproj.filters /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/LICENSE -------------------------------------------------------------------------------- /Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/Makefile -------------------------------------------------------------------------------- /Linux/Version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/Version -------------------------------------------------------------------------------- /Linux/cgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/cgen/Makefile -------------------------------------------------------------------------------- /Linux/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/cpp/Makefile -------------------------------------------------------------------------------- /Linux/cref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/cref/Makefile -------------------------------------------------------------------------------- /Linux/dehuff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/dehuff/Makefile -------------------------------------------------------------------------------- /Linux/dump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/dump/Makefile -------------------------------------------------------------------------------- /Linux/enhuff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/enhuff/Makefile -------------------------------------------------------------------------------- /Linux/hi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/hi.mk -------------------------------------------------------------------------------- /Linux/hidump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/hidump/Makefile -------------------------------------------------------------------------------- /Linux/hidump2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/hidump2/Makefile -------------------------------------------------------------------------------- /Linux/libr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/libr/Makefile -------------------------------------------------------------------------------- /Linux/libr4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/libr4/Makefile -------------------------------------------------------------------------------- /Linux/link/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/link/Makefile -------------------------------------------------------------------------------- /Linux/mkpat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/mkpat/Makefile -------------------------------------------------------------------------------- /Linux/objtohex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/objtohex/Makefile -------------------------------------------------------------------------------- /Linux/optim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/optim/Makefile -------------------------------------------------------------------------------- /Linux/p1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/p1/Makefile -------------------------------------------------------------------------------- /Linux/version.in: -------------------------------------------------------------------------------- 1 | [Version] 2 | GIT_VERSION @V@ 3 | Last checked @D@ 4 | -------------------------------------------------------------------------------- /Linux/zas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/zas/Makefile -------------------------------------------------------------------------------- /Linux/zas4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/zas4/Makefile -------------------------------------------------------------------------------- /Linux/zc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Linux/zc/Makefile -------------------------------------------------------------------------------- /Package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Package -------------------------------------------------------------------------------- /Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Readme.html -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Readme.md -------------------------------------------------------------------------------- /Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Readme.pdf -------------------------------------------------------------------------------- /Scripts/getVersion.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Scripts/getVersion.cmd -------------------------------------------------------------------------------- /Scripts/getVersion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Scripts/getVersion.pl -------------------------------------------------------------------------------- /Scripts/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Scripts/install.cmd -------------------------------------------------------------------------------- /Scripts/showVersion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Scripts/showVersion.pdf -------------------------------------------------------------------------------- /Scripts/versionTools.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/Scripts/versionTools.pdf -------------------------------------------------------------------------------- /cgen/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/_appinfo.h -------------------------------------------------------------------------------- /cgen/_version.h: -------------------------------------------------------------------------------- 1 | // Autogenerated version file 2 | #define GIT_VERSION "2025.6.12.6" 3 | -------------------------------------------------------------------------------- /cgen/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/cgen.c -------------------------------------------------------------------------------- /cgen/cgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/cgen.h -------------------------------------------------------------------------------- /cgen/cgen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/cgen.vcxproj -------------------------------------------------------------------------------- /cgen/cgen.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/cgen.vcxproj.filters -------------------------------------------------------------------------------- /cgen/native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/native/Makefile -------------------------------------------------------------------------------- /cgen/native/unpack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/native/unpack.pl -------------------------------------------------------------------------------- /cgen/nikitin/CGEN.HUF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/nikitin/CGEN.HUF -------------------------------------------------------------------------------- /cgen/nikitin/LIBRARY.HUF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/nikitin/LIBRARY.HUF -------------------------------------------------------------------------------- /cgen/nikitin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/nikitin/README.md -------------------------------------------------------------------------------- /cgen/nikitin/Readme_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/nikitin/Readme_en.txt -------------------------------------------------------------------------------- /cgen/nikitin/SOURCE.HUF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cgen/nikitin/SOURCE.HUF -------------------------------------------------------------------------------- /cpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/.clang-format -------------------------------------------------------------------------------- /cpp/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/_appinfo.h -------------------------------------------------------------------------------- /cpp/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/_version.h -------------------------------------------------------------------------------- /cpp/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/cpp.c -------------------------------------------------------------------------------- /cpp/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/cpp.h -------------------------------------------------------------------------------- /cpp/cpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/cpp.vcxproj -------------------------------------------------------------------------------- /cpp/cpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/cpp.vcxproj.filters -------------------------------------------------------------------------------- /cpp/cpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/cpy.c -------------------------------------------------------------------------------- /cpp/fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/fname.c -------------------------------------------------------------------------------- /cpp/getargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/getargs.c -------------------------------------------------------------------------------- /cpp/missing/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/missing/dirent.c -------------------------------------------------------------------------------- /cpp/missing/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/missing/dirent.h -------------------------------------------------------------------------------- /cpp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/version.h -------------------------------------------------------------------------------- /cpp/yylex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cpp/yylex.c -------------------------------------------------------------------------------- /cref/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/BUILD.md -------------------------------------------------------------------------------- /cref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/README.md -------------------------------------------------------------------------------- /cref/_appinfo.h: -------------------------------------------------------------------------------- 1 | #define APP_NAME "cref" 2 | -------------------------------------------------------------------------------- /cref/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/_version.h -------------------------------------------------------------------------------- /cref/cref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/cref.c -------------------------------------------------------------------------------- /cref/cref.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/cref.licenseheader -------------------------------------------------------------------------------- /cref/cref.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/cref.vcxproj -------------------------------------------------------------------------------- /cref/cref.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/cref.vcxproj.filters -------------------------------------------------------------------------------- /cref/crefcmp.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/crefcmp.xlsm -------------------------------------------------------------------------------- /cref/fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/fname.c -------------------------------------------------------------------------------- /cref/getargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/getargs.c -------------------------------------------------------------------------------- /cref/missing/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/missing/dirent.c -------------------------------------------------------------------------------- /cref/missing/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/cref/missing/dirent.h -------------------------------------------------------------------------------- /dehuff/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dehuff/_appinfo.h -------------------------------------------------------------------------------- /dehuff/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dehuff/_version.h -------------------------------------------------------------------------------- /dehuff/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dehuff/decode.c -------------------------------------------------------------------------------- /dehuff/dehuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dehuff/dehuff.c -------------------------------------------------------------------------------- /dehuff/dehuff.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dehuff/dehuff.vcxproj -------------------------------------------------------------------------------- /dehuff/dehuff.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dehuff/dehuff.vcxproj.filters -------------------------------------------------------------------------------- /dehuff/huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dehuff/huff.h -------------------------------------------------------------------------------- /dehuff/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dehuff/misc.c -------------------------------------------------------------------------------- /dump/_appinfo.h: -------------------------------------------------------------------------------- 1 | #define APP_NAME "dump" 2 | -------------------------------------------------------------------------------- /dump/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dump/_version.h -------------------------------------------------------------------------------- /dump/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dump/dump.c -------------------------------------------------------------------------------- /dump/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dump/dump.h -------------------------------------------------------------------------------- /dump/dump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dump/dump.vcxproj -------------------------------------------------------------------------------- /dump/dump.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/dump/dump.vcxproj.filters -------------------------------------------------------------------------------- /enhuff/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/enhuff/_appinfo.h -------------------------------------------------------------------------------- /enhuff/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/enhuff/_version.h -------------------------------------------------------------------------------- /enhuff/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/enhuff/encode.c -------------------------------------------------------------------------------- /enhuff/enhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/enhuff/enhuff.c -------------------------------------------------------------------------------- /enhuff/enhuff.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/enhuff/enhuff.vcxproj -------------------------------------------------------------------------------- /enhuff/enhuff.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/enhuff/enhuff.vcxproj.filters -------------------------------------------------------------------------------- /enhuff/huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/enhuff/huff.h -------------------------------------------------------------------------------- /enhuff/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/enhuff/misc.c -------------------------------------------------------------------------------- /hidump/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump/_appinfo.h -------------------------------------------------------------------------------- /hidump/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump/_version.h -------------------------------------------------------------------------------- /hidump/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump/dump.c -------------------------------------------------------------------------------- /hidump/hidump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump/hidump.vcxproj -------------------------------------------------------------------------------- /hidump/hidump.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump/hidump.vcxproj.filters -------------------------------------------------------------------------------- /hidump/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump/version.c -------------------------------------------------------------------------------- /hidump2/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump2/_appinfo.h -------------------------------------------------------------------------------- /hidump2/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump2/_version.h -------------------------------------------------------------------------------- /hidump2/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump2/dump.c -------------------------------------------------------------------------------- /hidump2/hidump2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump2/hidump2.vcxproj -------------------------------------------------------------------------------- /hidump2/hidump2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump2/hidump2.vcxproj.filters -------------------------------------------------------------------------------- /hidump2/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hidump2/version.c -------------------------------------------------------------------------------- /hishared/Cbuild.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/Cbuild.props -------------------------------------------------------------------------------- /hishared/Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/Version.props -------------------------------------------------------------------------------- /hishared/_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/_version.c -------------------------------------------------------------------------------- /hishared/_version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/_version.rc -------------------------------------------------------------------------------- /hishared/appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/appinfo.h -------------------------------------------------------------------------------- /hishared/getVersion.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/getVersion.cmd -------------------------------------------------------------------------------- /hishared/getVersion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/getVersion.pl -------------------------------------------------------------------------------- /hishared/hishared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/hishared.vcxitems -------------------------------------------------------------------------------- /hishared/showVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hishared/showVersion.h -------------------------------------------------------------------------------- /hitech.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/hitech.sln -------------------------------------------------------------------------------- /libr/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr/_appinfo.h -------------------------------------------------------------------------------- /libr/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr/_version.h -------------------------------------------------------------------------------- /libr/libr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr/libr.c -------------------------------------------------------------------------------- /libr/libr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr/libr.h -------------------------------------------------------------------------------- /libr/libr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr/libr.vcxproj -------------------------------------------------------------------------------- /libr/libr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr/libr.vcxproj.filters -------------------------------------------------------------------------------- /libr4/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/_appinfo.h -------------------------------------------------------------------------------- /libr4/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/_version.h -------------------------------------------------------------------------------- /libr4/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/delete.c -------------------------------------------------------------------------------- /libr4/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/extract.c -------------------------------------------------------------------------------- /libr4/fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/fname.c -------------------------------------------------------------------------------- /libr4/getargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/getargs.c -------------------------------------------------------------------------------- /libr4/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/io.c -------------------------------------------------------------------------------- /libr4/libr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/libr.h -------------------------------------------------------------------------------- /libr4/libr4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/libr4.vcxproj -------------------------------------------------------------------------------- /libr4/libr4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/libr4.vcxproj.filters -------------------------------------------------------------------------------- /libr4/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/list.c -------------------------------------------------------------------------------- /libr4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/main.c -------------------------------------------------------------------------------- /libr4/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/misc.c -------------------------------------------------------------------------------- /libr4/missing/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/missing/dirent.c -------------------------------------------------------------------------------- /libr4/missing/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/missing/dirent.h -------------------------------------------------------------------------------- /libr4/native/link.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/native/link.rsp -------------------------------------------------------------------------------- /libr4/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/obj.c -------------------------------------------------------------------------------- /libr4/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/replace.c -------------------------------------------------------------------------------- /libr4/test/86--DLC.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/libr4/test/86--DLC.LIB -------------------------------------------------------------------------------- /link/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/_appinfo.h -------------------------------------------------------------------------------- /link/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/_version.h -------------------------------------------------------------------------------- /link/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/extra.c -------------------------------------------------------------------------------- /link/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/io.c -------------------------------------------------------------------------------- /link/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/lib.c -------------------------------------------------------------------------------- /link/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/link.h -------------------------------------------------------------------------------- /link/link.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/link.vcxproj -------------------------------------------------------------------------------- /link/link.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/link.vcxproj.filters -------------------------------------------------------------------------------- /link/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/main.c -------------------------------------------------------------------------------- /link/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/misc.c -------------------------------------------------------------------------------- /link/native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/native/Makefile -------------------------------------------------------------------------------- /link/native/linqcodecmp.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/native/linqcodecmp.xlsm -------------------------------------------------------------------------------- /link/native/p.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/native/p.bat -------------------------------------------------------------------------------- /link/reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/reloc.c -------------------------------------------------------------------------------- /link/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/sym.c -------------------------------------------------------------------------------- /link/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/link/text.c -------------------------------------------------------------------------------- /mkpat/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/_appinfo.h -------------------------------------------------------------------------------- /mkpat/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/_version.h -------------------------------------------------------------------------------- /mkpat/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/crc16.c -------------------------------------------------------------------------------- /mkpat/mkpat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/mkpat.c -------------------------------------------------------------------------------- /mkpat/mkpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/mkpat.h -------------------------------------------------------------------------------- /mkpat/mkpat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/mkpat.vcxproj -------------------------------------------------------------------------------- /mkpat/mkpat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/mkpat.vcxproj.filters -------------------------------------------------------------------------------- /mkpat/test/LIBC.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/LIBC.LIB -------------------------------------------------------------------------------- /mkpat/test/LIBCORIG.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/LIBCORIG.LIB -------------------------------------------------------------------------------- /mkpat/test/LIBF.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/LIBF.LIB -------------------------------------------------------------------------------- /mkpat/test/LIBFORIG.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/LIBFORIG.LIB -------------------------------------------------------------------------------- /mkpat/test/LIBOVR.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/LIBOVR.LIB -------------------------------------------------------------------------------- /mkpat/test/crt.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/crt.pat -------------------------------------------------------------------------------- /mkpat/test/crtcpm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/crtcpm.obj -------------------------------------------------------------------------------- /mkpat/test/fix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/fix.pl -------------------------------------------------------------------------------- /mkpat/test/h13lib.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/h13lib.pat -------------------------------------------------------------------------------- /mkpat/test/h13lib.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/h13lib.sig -------------------------------------------------------------------------------- /mkpat/test/libc.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/libc.pat -------------------------------------------------------------------------------- /mkpat/test/libc80.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/libc80.lib -------------------------------------------------------------------------------- /mkpat/test/libf80.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/libf80.lib -------------------------------------------------------------------------------- /mkpat/test/nlibc.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/nlibc.pat -------------------------------------------------------------------------------- /mkpat/test/nlibc.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/nlibc.sig -------------------------------------------------------------------------------- /mkpat/test/olibc.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/olibc.pat -------------------------------------------------------------------------------- /mkpat/test/rrtcpm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/rrtcpm.obj -------------------------------------------------------------------------------- /mkpat/test/zlibc.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/zlibc.pat -------------------------------------------------------------------------------- /mkpat/test/zlibc.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/zlibc.sig -------------------------------------------------------------------------------- /mkpat/test/zlibf.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/mkpat/test/zlibf.pat -------------------------------------------------------------------------------- /objtohex/_appinfo.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define APP_NAME "objtohex" 3 | -------------------------------------------------------------------------------- /objtohex/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/objtohex/_version.h -------------------------------------------------------------------------------- /objtohex/objtohex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/objtohex/objtohex -------------------------------------------------------------------------------- /objtohex/objtohex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/objtohex/objtohex.c -------------------------------------------------------------------------------- /objtohex/objtohex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/objtohex/objtohex.vcxproj -------------------------------------------------------------------------------- /objtohex/objtohex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/objtohex/objtohex.vcxproj.filters -------------------------------------------------------------------------------- /optim/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/optim/_appinfo.h -------------------------------------------------------------------------------- /optim/_version.h: -------------------------------------------------------------------------------- 1 | // Autogenerated version file 2 | #define GIT_VERSION "2025.5.27.3" 3 | -------------------------------------------------------------------------------- /optim/optim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/optim/optim.c -------------------------------------------------------------------------------- /optim/optim.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/optim/optim.vcxproj -------------------------------------------------------------------------------- /optim/optim.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/optim/optim.vcxproj.filters -------------------------------------------------------------------------------- /p1/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/_appinfo.h -------------------------------------------------------------------------------- /p1/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/_version.h -------------------------------------------------------------------------------- /p1/cclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/cclass.c -------------------------------------------------------------------------------- /p1/cclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/cclass.h -------------------------------------------------------------------------------- /p1/emit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/emit.c -------------------------------------------------------------------------------- /p1/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/expr.c -------------------------------------------------------------------------------- /p1/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/lex.c -------------------------------------------------------------------------------- /p1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/main.c -------------------------------------------------------------------------------- /p1/memchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/memchk.c -------------------------------------------------------------------------------- /p1/native/libtiny.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/native/libtiny.lib -------------------------------------------------------------------------------- /p1/native/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/native/makefile -------------------------------------------------------------------------------- /p1/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/op.c -------------------------------------------------------------------------------- /p1/p1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/p1.h -------------------------------------------------------------------------------- /p1/p1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/p1.vcxproj -------------------------------------------------------------------------------- /p1/p1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/p1.vcxproj.filters -------------------------------------------------------------------------------- /p1/p1codecmp.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/p1codecmp.xlsm -------------------------------------------------------------------------------- /p1/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/program.c -------------------------------------------------------------------------------- /p1/stmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/stmt.c -------------------------------------------------------------------------------- /p1/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/sym.c -------------------------------------------------------------------------------- /p1/tok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/tok.h -------------------------------------------------------------------------------- /p1/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/p1/type.c -------------------------------------------------------------------------------- /version.in: -------------------------------------------------------------------------------- 1 | [Package] 2 | GIT_VERSION @V@ 3 | Last checked @D@ 4 | -------------------------------------------------------------------------------- /zas/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/_appinfo.h -------------------------------------------------------------------------------- /zas/_version.h: -------------------------------------------------------------------------------- 1 | // Autogenerated version file 2 | #define GIT_VERSION "2025.6.12.9" 3 | -------------------------------------------------------------------------------- /zas/cclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/cclass.c -------------------------------------------------------------------------------- /zas/cclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/cclass.h -------------------------------------------------------------------------------- /zas/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/code.c -------------------------------------------------------------------------------- /zas/cpm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/cpm/makefile -------------------------------------------------------------------------------- /zas/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/expr.c -------------------------------------------------------------------------------- /zas/fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/fname.c -------------------------------------------------------------------------------- /zas/kwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/kwd.c -------------------------------------------------------------------------------- /zas/kwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/kwd.h -------------------------------------------------------------------------------- /zas/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/lex.c -------------------------------------------------------------------------------- /zas/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/macro.c -------------------------------------------------------------------------------- /zas/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/main.c -------------------------------------------------------------------------------- /zas/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/parse.c -------------------------------------------------------------------------------- /zas/rbase.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/rbase.pl -------------------------------------------------------------------------------- /zas/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/sym.c -------------------------------------------------------------------------------- /zas/tlab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/tlab.c -------------------------------------------------------------------------------- /zas/zas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/zas.h -------------------------------------------------------------------------------- /zas/zas.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/zas.licenseheader -------------------------------------------------------------------------------- /zas/zas.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/zas.vcxproj -------------------------------------------------------------------------------- /zas/zas.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/zas.vcxproj.filters -------------------------------------------------------------------------------- /zas/zascodecmp.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas/zascodecmp.xlsm -------------------------------------------------------------------------------- /zas4/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/_appinfo.h -------------------------------------------------------------------------------- /zas4/_version.h: -------------------------------------------------------------------------------- 1 | // Autogenerated version file 2 | #define GIT_VERSION "2025.6.12.5" 3 | -------------------------------------------------------------------------------- /zas4/cclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/cclass.c -------------------------------------------------------------------------------- /zas4/cclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/cclass.h -------------------------------------------------------------------------------- /zas4/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/code.c -------------------------------------------------------------------------------- /zas4/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/expr.c -------------------------------------------------------------------------------- /zas4/fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/fname.c -------------------------------------------------------------------------------- /zas4/kwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/kwd.c -------------------------------------------------------------------------------- /zas4/kwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/kwd.h -------------------------------------------------------------------------------- /zas4/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/lex.c -------------------------------------------------------------------------------- /zas4/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/macro.c -------------------------------------------------------------------------------- /zas4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/main.c -------------------------------------------------------------------------------- /zas4/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/parse.c -------------------------------------------------------------------------------- /zas4/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/readme.md -------------------------------------------------------------------------------- /zas4/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/sym.c -------------------------------------------------------------------------------- /zas4/tlab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/tlab.c -------------------------------------------------------------------------------- /zas4/zas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/zas.h -------------------------------------------------------------------------------- /zas4/zas4.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/zas4.licenseheader -------------------------------------------------------------------------------- /zas4/zas4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/zas4.vcxproj -------------------------------------------------------------------------------- /zas4/zas4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zas4/zas4.vcxproj.filters -------------------------------------------------------------------------------- /zc/_appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/_appinfo.h -------------------------------------------------------------------------------- /zc/_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/_version.h -------------------------------------------------------------------------------- /zc/getargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/getargs.c -------------------------------------------------------------------------------- /zc/missing/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/missing/dirent.c -------------------------------------------------------------------------------- /zc/missing/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/missing/dirent.h -------------------------------------------------------------------------------- /zc/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/os.c -------------------------------------------------------------------------------- /zc/zc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/zc.c -------------------------------------------------------------------------------- /zc/zc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/zc.h -------------------------------------------------------------------------------- /zc/zc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/zc.vcxproj -------------------------------------------------------------------------------- /zc/zc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogdenpm/hitech/HEAD/zc/zc.vcxproj.filters --------------------------------------------------------------------------------