├── LICENSE.md ├── README.md ├── c600 ├── bin │ ├── c1.err │ ├── c1.exe │ ├── c1l.exe │ ├── c2.exe │ ├── c23.err │ ├── c3.exe │ ├── cl.err │ ├── cl.exe │ ├── cl.msg │ ├── cv.exe │ ├── fixshift.com │ ├── msherc.com │ ├── nmake.exe │ ├── nmk.com │ └── qcc.exe ├── binb │ ├── bind.exe │ ├── cvpack.exe │ ├── exehdr.exe │ ├── helpmake.exe │ ├── ilink.exe │ ├── ilinkstb.ovl │ ├── implib.exe │ ├── lib.exe │ ├── link.exe │ ├── qh.exe │ ├── readme.doc │ └── setup.exe ├── include │ ├── assert.h │ ├── bios.h │ ├── conio.h │ ├── ctype.h │ ├── direct.h │ ├── dos.h │ ├── errno.h │ ├── fcntl.h │ ├── float.h │ ├── graph.h │ ├── io.h │ ├── limits.h │ ├── locale.h │ ├── malloc.h │ ├── math.h │ ├── memory.h │ ├── pgchart.h │ ├── process.h │ ├── search.h │ ├── setjmp.h │ ├── share.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── locking.h │ │ ├── stat.h │ │ ├── timeb.h │ │ ├── types.h │ │ └── utime.h │ ├── time.h │ └── varargs.h ├── lib │ ├── api.lib │ ├── binmode.obj │ ├── clibc7.lib │ ├── clibca.lib │ ├── clibce.lib │ ├── crtcom.lib │ ├── fileinfo.obj │ ├── graphics.lib │ ├── llibc7.lib │ ├── llibca.lib │ ├── llibce.lib │ ├── mlibc7.lib │ ├── mlibca.lib │ ├── mlibce.lib │ ├── pgchart.lib │ ├── rmfixup.obj │ ├── setargv.obj │ ├── slibc7.lib │ ├── slibca.lib │ ├── slibce.lib │ ├── txtonly.obj │ └── varstck.obj ├── new-conf.sys └── new-vars.bat ├── c86plus ├── arc │ ├── c386.arc │ ├── cbasea.arc │ ├── cbasec.arc │ ├── cfio.arc │ ├── cfpi.arc │ ├── cibm.arc │ ├── makefile.bas │ ├── makefile.fio │ ├── makefile.fpi │ └── makefile.ibm ├── bin │ ├── arch.exe │ ├── c86info.dat │ ├── c86info.exe │ ├── c86plus.exe │ ├── carole.exe │ ├── cc.exe │ ├── cc.pif │ ├── make.exe │ ├── marion.exe │ └── touch.exe ├── c86plus.ver ├── c86vars.bat ├── cc1.bat ├── include │ ├── _alloc.h │ ├── _math.h │ ├── assert.h │ ├── c86old.h │ ├── conio.h │ ├── ctype.h │ ├── direct.h │ ├── dos.h │ ├── errno.h │ ├── fcntl.h │ ├── fileio3.h │ ├── float.h │ ├── ibm.h │ ├── intr.ah │ ├── intr.h │ ├── io.h │ ├── limits.h │ ├── locale.h │ ├── malloc.h │ ├── math.h │ ├── memory.h │ ├── process.h │ ├── prologue.ah │ ├── search.h │ ├── setjmp.h │ ├── share.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── locking.h │ │ ├── stat.h │ │ ├── timeb.h │ │ ├── types.h │ │ └── utime.h │ └── time.h ├── lib │ ├── c386lfd.lib │ ├── c386lnd.lib │ ├── c386sfd.lib │ ├── c386snd.lib │ ├── cbaselfd.lib │ ├── cbaselnd.lib │ ├── cbasesfd.lib │ ├── cbasesnd.lib │ ├── ccommon.lib │ ├── cfiolfd.lib │ ├── cfiolnd.lib │ ├── cfiosfd.lib │ ├── cfiosnd.lib │ ├── cfpi.lib │ ├── cfpi87.lib │ ├── cibmlfd.lib │ ├── cibmlnd.lib │ ├── cibmsfd.lib │ ├── cibmsnd.lib │ ├── cwildlfd.obj │ ├── cwildlnd.obj │ ├── cwildsfd.obj │ └── cwildsnd.obj └── read.me ├── ic86 ├── ic86.exe ├── inc │ ├── _alloc.h │ ├── _clib.h │ ├── _dos.h │ ├── _math.h │ ├── assert.h │ ├── bios.h │ ├── conio.h │ ├── ctype.h │ ├── direct.h │ ├── dos.h │ ├── errno.h │ ├── fcntl.h │ ├── fileio3.h │ ├── float.h │ ├── i186.h │ ├── i286.h │ ├── i386.h │ ├── i486.h │ ├── i8086.h │ ├── i86.h │ ├── io.h │ ├── limits.h │ ├── lint.h │ ├── locale.h │ ├── math.h │ ├── process.h │ ├── reent.h │ ├── rmxc.h │ ├── rmxerr.h │ ├── search.h │ ├── setjmp.h │ ├── share.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── locking.h │ │ ├── stat.h │ │ ├── types.h │ │ └── utime.h │ ├── time.h │ ├── udi.h │ ├── unistd.h │ └── util.ah ├── libs │ ├── cdosc.lib │ ├── cdosl.lib │ ├── cdosm.lib │ ├── cdosnfc.lib │ ├── cdosnfl.lib │ ├── cdosnfm.lib │ ├── cdosnfs.lib │ ├── cdoss.lib │ ├── clib87.lib │ ├── clibc.lib │ ├── clibl.lib │ ├── clibm.lib │ ├── clibnfc.lib │ ├── clibnfl.lib │ ├── clibnfm.lib │ ├── clibnfs.lib │ ├── clibs.lib │ ├── crmx1c.lib │ ├── crmx1l.lib │ ├── crmxnf1c.lib │ ├── crmxnf1l.lib │ ├── cstdosc.obj │ ├── cstdosl.obj │ ├── cstdosm.obj │ ├── cstdoss.obj │ ├── cstembc.obj │ ├── cstembl.obj │ ├── cstembm.obj │ ├── cstembs.obj │ ├── cstrmxc.obj │ └── cstrmxl.obj └── src │ ├── _create.c │ ├── _semapho.c │ └── cstart.asm ├── lc ├── 8087.mac ├── assert.h ├── c-sprite.hlp ├── ctype.h ├── d │ ├── c.obj │ ├── dos.mac │ ├── lc.lib │ ├── lcg.lib │ ├── lcm.lib │ ├── lco.lib │ ├── lcr.lib │ ├── ndp.lib │ └── nondp.lib ├── dos.h ├── doscalls.h ├── error.h ├── examples │ ├── cat.c │ ├── demo.bat │ ├── draw.c │ ├── draw.exe │ ├── ftoc.c │ ├── fxu.c │ ├── fxu.dem │ ├── fxu.exe │ ├── fxu.map │ ├── fxu.obj │ ├── info.c │ └── makedraw.bat ├── family.cs ├── fcntl.h ├── fctype.h ├── float.h ├── gfx.h ├── gfxg_pro.h ├── ios1.h ├── l │ ├── c.obj │ ├── dos.mac │ ├── lc.lib │ ├── lcg.lib │ ├── lcm.lib │ ├── lco.lib │ ├── lcr.lib │ ├── ndp.lib │ └── nondp.lib ├── lapi.lib ├── lbind.exe ├── lc.exe ├── lc.hlp ├── lc.mac ├── lc1.exe ├── lc1.msg ├── lc1b.exe ├── lc2.exe ├── lc2b.exe ├── libmod.exe ├── limits.h ├── llib.exe ├── locking.h ├── lpatch.exe ├── lse.dat ├── lse.hlp ├── lse.msg ├── lseinst.exe ├── lseinst.msg ├── math.h ├── nondp.h ├── omd.exe ├── os2.h ├── os2bug.h ├── os2dev.h ├── os2dll.h ├── os2io.h ├── os2ipc.h ├── os2kbd.h ├── os2mem.h ├── os2misc.h ├── os2mon.h ├── os2mou.h ├── os2nls.h ├── os2task.h ├── os2time.h ├── os2vio.h ├── p │ ├── c.obj │ ├── dos.mac │ ├── lc.lib │ ├── lcg.lib │ ├── lcm.lib │ ├── lco.lib │ ├── lcr.lib │ ├── ndp.lib │ └── nondp.lib ├── pc.h ├── pr.exe ├── prot │ ├── cs.exe │ └── lse.exe ├── read.me ├── real │ ├── cs.exe │ └── lse.exe ├── s │ ├── c.obj │ ├── dos.mac │ ├── lc.lib │ ├── lcg.lib │ ├── lcm.lib │ ├── lco.lib │ ├── lcr.lib │ ├── ndp.lib │ └── nondp.lib ├── setjmp.h ├── signal.h ├── source │ ├── _assert.c │ ├── _main.c │ ├── c.asm │ ├── cxferr.c │ ├── cxkerr.asm │ ├── cxserr.asm │ ├── io.asm │ ├── kio.c │ ├── matherr.c │ ├── oserr.c │ ├── stack.c │ ├── syserr.c │ ├── template.asm │ └── vio.c ├── stdio.h ├── stdlib.h ├── string.h ├── subcalls.h ├── time.h └── unlstd.h ├── masm611 ├── bin │ ├── cref.doc │ ├── cref.exe │ ├── dosxnt.exe │ ├── h2inc.err │ ├── h2inc.exe │ ├── masm.exe │ ├── ml.err │ ├── ml.exe │ ├── nmake.exe │ └── nmaker.exe ├── binr │ ├── cv.exe │ ├── cvpack.exe │ ├── dmw0.dll │ ├── eed1cxx.dll │ ├── emd1d1.dll │ ├── emm386.exe │ ├── exehdr.exe │ ├── exp.exe │ ├── implib.exe │ ├── lib.exe │ ├── link.exe │ ├── msd.exe │ ├── msd.txt │ ├── rcvcom.exe │ ├── rm.exe │ ├── shd1.dll │ ├── tld1com.dll │ ├── tld1loc.dll │ └── undel.exe ├── cv.txt ├── errmsg.txt ├── include │ ├── bios.inc │ ├── cmacros.inc │ ├── cmacros.new │ ├── dos.inc │ ├── macros.inc │ └── prologue.inc ├── new-conf.sys ├── new-vars.bat ├── pentium.txt ├── readme.txt └── support.txt ├── qc25 ├── bin │ ├── _qcl.exe │ ├── brief.key │ ├── c1.err │ ├── crlf.exe │ ├── emacs.key │ ├── epsilon.key │ ├── errors.hlp │ ├── fixshift.com │ ├── graphics.hlp │ ├── ilink.exe │ ├── ilinkstb.ovl │ ├── lib.exe │ ├── me.key │ ├── mkkey.exe │ ├── msherc.com │ ├── nmake.exe │ ├── nmk.com │ ├── qa.hlp │ ├── qas.ovl │ ├── qc.exe │ ├── qc.hlp │ ├── qc.ini │ ├── qc.key │ ├── qcc.dat │ ├── qcc.ovl │ ├── qcenv.hlp │ ├── qcl.err │ ├── qcl.exe │ ├── qcl.msg │ ├── qlink.exe │ ├── readme.doc │ └── setup.exe ├── include │ ├── assert.h │ ├── bios.h │ ├── conio.h │ ├── ctype.h │ ├── direct.h │ ├── dos.h │ ├── errno.h │ ├── fcntl.h │ ├── float.h │ ├── graph.h │ ├── io.h │ ├── limits.h │ ├── locale.h │ ├── malloc.h │ ├── math.h │ ├── memory.h │ ├── pgchart.h │ ├── process.h │ ├── search.h │ ├── setjmp.h │ ├── share.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── locking.h │ │ ├── stat.h │ │ ├── timeb.h │ │ ├── types.h │ │ └── utime.h │ ├── time.h │ └── varargs.h ├── lib │ ├── binmode.obj │ ├── c51stubs.lib │ ├── clibc7.lib │ ├── clibce.lib │ ├── crtcom.lib │ ├── fileinfo.obj │ ├── graphics.lib │ ├── llibc7.lib │ ├── llibce.lib │ ├── mlibc7.lib │ ├── mlibce.lib │ ├── pgchart.lib │ ├── rmfixup.obj │ ├── setargv.obj │ ├── slibc7.lib │ ├── slibce.lib │ ├── txtonly.obj │ └── varstck.obj ├── new-conf.sys └── new-vars.bat ├── tasm ├── bin │ ├── 32rtm.exe │ ├── brc.exe │ ├── brc32.exe │ ├── brcc.exe │ ├── brcc32.exe │ ├── builtins.mak │ ├── dpmi16bi.ovl │ ├── dpmi32vm.ovl │ ├── grep.com │ ├── groups.exe │ ├── h2ash.exe │ ├── help.ico │ ├── impdef.exe │ ├── implib.exe │ ├── make.exe │ ├── maker.exe │ ├── makeswap.exe │ ├── objxref.exe │ ├── rlink.exe │ ├── rlink32.dll │ ├── rtm.exe │ ├── rw32core.dll │ ├── rwres.dll │ ├── tasm.exe │ ├── tasm.hlp │ ├── tasmx.exe │ ├── tdmem.exe │ ├── tdstrip.exe │ ├── tdump.exe │ ├── thunk.exe │ ├── tlib.exe │ ├── tlink.cfg │ ├── tlink.exe │ ├── touch.exe │ ├── windpmi.386 │ ├── winstub.exe │ └── workopt.dos ├── include │ ├── mmsystem.inc │ ├── toolhelp.inc │ └── windows.inc ├── lib │ └── import.lib ├── tsm_inst.txt └── tsm_rdme.txt ├── tc ├── att.bgi ├── bgidemo.c ├── bgiobj.exe ├── build-c0.bat ├── c0.asm ├── cbar.c ├── cga.bgi ├── cinstxfr.exe ├── cpasdemo.c ├── cpasdemo.pas ├── cpp.exe ├── ctopas.tc ├── egavga.bgi ├── emuvars.asi ├── getopt.c ├── goth.chr ├── grep.com ├── hello.c ├── helpme!.doc ├── herc.bgi ├── ibm8514.bgi ├── include │ ├── alloc.h │ ├── assert.h │ ├── bios.h │ ├── conio.h │ ├── ctype.h │ ├── dir.h │ ├── dos.h │ ├── errno.h │ ├── fcntl.h │ ├── float.h │ ├── graphics.h │ ├── io.h │ ├── limits.h │ ├── math.h │ ├── mem.h │ ├── process.h │ ├── setjmp.h │ ├── share.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── stat.h │ │ ├── timeb.h │ │ └── types.h │ ├── time.h │ └── values.h ├── lib │ ├── c0c.obj │ ├── c0h.obj │ ├── c0l.obj │ ├── c0m.obj │ ├── c0s.obj │ ├── c0t.obj │ ├── cc.lib │ ├── ch.lib │ ├── cl.lib │ ├── cm.lib │ ├── cs.lib │ ├── emu.lib │ ├── fp87.lib │ ├── graphics.lib │ ├── init.obj │ ├── mathc.lib │ ├── mathh.lib │ ├── mathl.lib │ ├── mathm.lib │ └── maths.lib ├── litt.chr ├── main.c ├── make.exe ├── matherr.c ├── mcalc.c ├── mcalc.doc ├── mcalc.h ├── mcalc.prj ├── mcdisply.c ├── mcinput.c ├── mcommand.c ├── mcparser.c ├── mcutil.c ├── objxref.com ├── pbar.pro ├── pc3270.bgi ├── readme ├── readme.com ├── rules.asi ├── sans.chr ├── setargv.asm ├── setenvp.asm ├── ssignal.c ├── tc.exe ├── tcc.exe ├── tcconfig.exe ├── tchelp.tch ├── tcinst.exe ├── thelp.com ├── thelp.doc ├── tlib.exe ├── tlink.exe ├── touch.com ├── trip.chr ├── turboc.cfg ├── wildargs.obj ├── wordcnt.c └── wordcnt.dat ├── tcpp ├── bgi │ ├── att.bgi │ ├── bgidemo.c │ ├── bgiobj.exe │ ├── bold.chr │ ├── cga.bgi │ ├── egavga.bgi │ ├── euro.chr │ ├── goth.chr │ ├── herc.bgi │ ├── ibm8514.bgi │ ├── lcom.chr │ ├── litt.chr │ ├── pc3270.bgi │ ├── sans.chr │ ├── scri.chr │ ├── simp.chr │ ├── trip.chr │ └── tscr.chr ├── bin │ ├── builtins.mak │ ├── cpp.exe │ ├── dpmi16bi.ovl │ ├── dpmiinst.exe │ ├── dpmiload.exe │ ├── dpmimem.dll │ ├── dpmires.exe │ ├── emstest.com │ ├── grep.com │ ├── make.exe │ ├── maker.exe │ ├── objxref.com │ ├── prj2mak.exe │ ├── tcc.exe │ ├── tdump.exe │ ├── tlib.exe │ ├── tlink.exe │ ├── touch.com │ ├── trigraph.exe │ ├── turboc.cfg │ └── unzip.exe ├── classlib │ ├── examples │ │ ├── directry.cpp │ │ ├── directry.h │ │ ├── directry.prj │ │ ├── filedata.cpp │ │ ├── filedata.h │ │ ├── lookup.cpp │ │ ├── lookup.prj │ │ ├── queuetst.cpp │ │ ├── queuetst.prj │ │ ├── reverse.cpp │ │ ├── reverse.prj │ │ ├── strngmax.cpp │ │ ├── strngmax.prj │ │ └── testdir.cpp │ ├── include │ │ ├── abstarry.h │ │ ├── array.h │ │ ├── arrays.h │ │ ├── assoc.h │ │ ├── bag.h │ │ ├── bags.h │ │ ├── btree.h │ │ ├── checks.h │ │ ├── clsdefs.h │ │ ├── clstypes.h │ │ ├── collect.h │ │ ├── contain.h │ │ ├── dbllist.h │ │ ├── deque.h │ │ ├── deques.h │ │ ├── dict.h │ │ ├── dlistimp.h │ │ ├── hashtbl.h │ │ ├── ldate.h │ │ ├── list.h │ │ ├── listimp.h │ │ ├── ltime.h │ │ ├── memmgr.h │ │ ├── object.h │ │ ├── priortyq.h │ │ ├── queue.h │ │ ├── queues.h │ │ ├── resource.h │ │ ├── set.h │ │ ├── sets.h │ │ ├── shddel.h │ │ ├── sortable.h │ │ ├── sortarry.h │ │ ├── stack.h │ │ ├── stacks.h │ │ ├── stdtempl.h │ │ ├── strng.h │ │ ├── timer.h │ │ └── vectimp.h │ ├── lib │ │ ├── tclasdbs.lib │ │ └── tclasss.lib │ ├── objs │ │ ├── dl │ │ │ ├── bidsdbl.prj │ │ │ └── tclasdbl.prj │ │ ├── ds │ │ │ ├── bidsdbs.prj │ │ │ └── tclasdbs.prj │ │ ├── l │ │ │ ├── bidsl.prj │ │ │ └── tclassl.prj │ │ └── s │ │ │ ├── bidss.prj │ │ │ └── tclasss.prj │ └── source │ │ ├── abstarry.cpp │ │ ├── array.cpp │ │ ├── assoc.cpp │ │ ├── babstary.cpp │ │ ├── bdict.cpp │ │ ├── bsortary.cpp │ │ ├── btree.cpp │ │ ├── btreeinn.cpp │ │ ├── btreelfn.cpp │ │ ├── collect.cpp │ │ ├── contain.cpp │ │ ├── dbllist.cpp │ │ ├── deque.cpp │ │ ├── dict.cpp │ │ ├── hashtbl.cpp │ │ ├── ldate.cpp │ │ ├── list.cpp │ │ ├── ltime.cpp │ │ ├── memmgr.cpp │ │ ├── object.cpp │ │ ├── sortarry.cpp │ │ ├── stack.cpp │ │ ├── strng.cpp │ │ ├── timer.cpp │ │ └── tmplinst.cpp ├── doc │ ├── ansi.doc │ ├── basm.doc │ ├── brief.tem │ ├── classlib.doc │ ├── cmacros.tem │ ├── defaults.tem │ ├── dosedit.tem │ ├── epsilon.tem │ ├── helpme!.doc │ └── util.doc ├── filelist.doc ├── include │ ├── _defs.h │ ├── _null.h │ ├── alloc.h │ ├── assert.h │ ├── bcd.h │ ├── bios.h │ ├── complex.h │ ├── conio.h │ ├── constrea.h │ ├── ctype.h │ ├── dir.h │ ├── direct.h │ ├── dirent.h │ ├── dos.h │ ├── errno.h │ ├── fcntl.h │ ├── float.h │ ├── fstream.h │ ├── generic.h │ ├── graphics.h │ ├── io.h │ ├── iomanip.h │ ├── iostream.h │ ├── limits.h │ ├── locale.h │ ├── locking.h │ ├── malloc.h │ ├── math.h │ ├── mem.h │ ├── memory.h │ ├── new.h │ ├── process.h │ ├── search.h │ ├── setjmp.h │ ├── share.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdiostr.h │ ├── stdlib.h │ ├── string.h │ ├── strstrea.h │ ├── sys │ │ ├── stat.h │ │ ├── timeb.h │ │ └── types.h │ ├── time.h │ ├── utime.h │ ├── values.h │ └── varargs.h ├── lib │ ├── c0c.obj │ ├── c0fc.obj │ ├── c0fh.obj │ ├── c0fl.obj │ ├── c0fm.obj │ ├── c0fs.obj │ ├── c0ft.obj │ ├── c0h.obj │ ├── c0l.obj │ ├── c0m.obj │ ├── c0s.obj │ ├── c0t.obj │ ├── cc.lib │ ├── ch.lib │ ├── cl.lib │ ├── cm.lib │ ├── cs.lib │ ├── emu.lib │ ├── fp87.lib │ ├── graphics.lib │ ├── mathc.lib │ ├── mathh.lib │ ├── mathl.lib │ ├── mathm.lib │ ├── maths.lib │ ├── overlay.lib │ └── wildargs.obj ├── readme └── readme.com └── watcom ├── binw ├── addsrc.dbg ├── animate.dbg ├── bcnt.dbg ├── bif.dbg ├── bp.dbg ├── bpatch.exe ├── c.prs ├── cmdedit.exe ├── cmdedit.txt ├── cntbrks.dbg ├── codeview.dip ├── colour.dbg ├── cpp.prs ├── ctags.exe ├── cvkeys.dbg ├── cvpack.exe ├── cw.trp ├── cwc.exe ├── cwhelp.cfg ├── cwhelp.exe ├── cwstub.exe ├── default.dbg ├── dmpobj.exe ├── dos32a.exe ├── dos4gw.doc ├── dos4gw.exe ├── dosserv.exe ├── dwarf.dip ├── edbind.exe ├── exe2bin.exe ├── export.dip ├── fcenable.exe ├── fill.dbg ├── fortran.prs ├── fox.dbg ├── hx.trp ├── ide.cfg ├── ide2make.exe ├── idedos.cfg ├── idedos32.cfg ├── idex.cfg ├── license.d32 ├── madx86.mad ├── mapsym.dip ├── mono.dbg ├── ms2wlink.exe ├── net.trp ├── netserv.exe ├── nmp.trp ├── nmpserv.exe ├── nov.trp ├── novserv.exe ├── nwvkeys.dbg ├── owcc.exe ├── owvkeys.dbg ├── par.trp ├── parserv.exe ├── pls.trp ├── pminfo.exe ├── pmodew.doc ├── pmodew.exe ├── pmodew.faq ├── pmwbind.exe ├── pmwlite.exe ├── pmwsetup.exe ├── pmwver.com ├── rcsdll.dll ├── readme.d32 ├── resize.dbg ├── restart.dbg ├── return.dbg ├── rfx.exe ├── rminfo.exe ├── rsi.trp ├── rsihelp.exp ├── save.dbg ├── sb.exe ├── sc.exe ├── sd.exe ├── ser.trp ├── serserv.exe ├── setup.dbg ├── slow.dbg ├── specs.owc ├── ss.exe ├── std.trp ├── stub32a.exe ├── stub32c.exe ├── sver.exe ├── tcpserv.exe ├── tdemu.dbg ├── tdkeys.dbg ├── techinfo.exe ├── unicode.437 ├── unicode.850 ├── unicode.852 ├── unicode1.250 ├── unicode1.252 ├── vc.dbg ├── vdmserv.exe ├── vr.dbg ├── wasaxp.exe ├── wasm.exe ├── wasmr.exe ├── wasppc.exe ├── watcom.dip ├── wcc.exe ├── wcc386.exe ├── wcc38601.int ├── wcci8601.int ├── wcl.exe ├── wcl386.exe ├── wd.dbg ├── wd.exe ├── wdis.exe ├── wdkeys.dbg ├── wdump.exe ├── whelp.exe ├── win.trp ├── winserv.exe ├── wlib.exe ├── wlink.exe ├── wlink.lnk ├── wmake.exe ├── wmaker.exe ├── wpp.exe ├── wpp38601.int ├── wppi8601.int ├── wprof.exe ├── wsample.exe ├── wsamprsi.exe ├── wstrip.exe ├── wstub.exe ├── wstubq.exe └── wtouch.exe ├── h ├── _algmut.h ├── _algnmod.h ├── _algsort.h ├── _comdef.h ├── _hash.h ├── _meta.h ├── _preincl.h ├── _rbtree.h ├── _strdef.h ├── algorith ├── alloca.h ├── array ├── assert.h ├── atomic ├── bios.h ├── bitset ├── cassert ├── cctype ├── cerrno ├── cfloat ├── chrono ├── cinttype ├── ciso646 ├── climits ├── clocale ├── cmath ├── codecvt ├── complex ├── complex.h ├── conditio ├── conio.h ├── crtdbg.h ├── csetjmp ├── csignal ├── cstdarg ├── cstdbool ├── cstddef ├── cstdint ├── cstdio ├── cstdlib ├── cstring ├── ctime ├── ctype.h ├── cwchar ├── cwctype ├── cwdll.h ├── deque ├── direct.h ├── dos.h ├── dosfunc.h ├── eh.h ├── env.h ├── errno.h ├── except.h ├── exceptio ├── exceptio.h ├── excpt.h ├── fcntl.h ├── fenv.h ├── float.h ├── fnmatch.h ├── forward_ ├── fstream ├── fstream.h ├── function ├── future ├── generic.h ├── graph.h ├── graph2.h ├── i86.h ├── initiali ├── inttypes.h ├── io.h ├── iomanip ├── iomanip.h ├── ios ├── ios.h ├── iosfwd ├── iosfwd.h ├── iostream ├── iostream.h ├── iso646.h ├── istream ├── istream.h ├── iterator ├── jctype.h ├── jstring.h ├── jtime.h ├── libgen.h ├── limits ├── limits.h ├── list ├── locale ├── locale.h ├── malloc.h ├── map ├── math.h ├── mbctype.h ├── mbstring.h ├── mem.h ├── memory ├── memory.h ├── mmintrin.h ├── mutex ├── new ├── new.h ├── numeric ├── ostream ├── ostream.h ├── pgchart.h ├── process.h ├── queue ├── random ├── ratio ├── regex ├── search.h ├── set ├── setjmp.h ├── share.h ├── signal.h ├── sstream ├── sstream.h ├── stack ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdexcep ├── stdexcep.h ├── stdint.h ├── stdio.h ├── stdiobuf.h ├── stdlib.h ├── streambu ├── streambu.h ├── string ├── string.h ├── string.hpp ├── strings.h ├── strstrea ├── strstrea.h ├── sys │ ├── _lfndos.h │ ├── _pc98.h │ ├── locking.h │ ├── stat.h │ ├── timeb.h │ ├── types.h │ └── utime.h ├── system_e ├── tchar.h ├── thread ├── time.h ├── tuple ├── type_tra ├── typeinde ├── typeinfo ├── typeinfo.h ├── unistd.h ├── unorderm ├── unorders ├── utility ├── utime.h ├── valarray ├── varargs.h ├── vector ├── wcdefs.h ├── wcexcept.h ├── wchar.h ├── wchash.h ├── wchbase.h ├── wchiter.h ├── wclbase.h ├── wclcom.h ├── wclibase.h ├── wclist.h ├── wclistit.h ├── wcqueue.h ├── wcsbase.h ├── wcsibase.h ├── wcskip.h ├── wcskipit.h ├── wcstack.h ├── wctype.h ├── wcvbase.h ├── wcvector.h ├── wdefwin.h └── wsample.h ├── lib286 ├── cplx7c.lib ├── cplx7l.lib ├── cplx7m.lib ├── cplx7s.lib ├── cplxc.lib ├── cplxl.lib ├── cplxm.lib ├── cplxs.lib ├── dos │ ├── binmode.obj │ ├── clibc.lib │ ├── clibl.lib │ ├── clibm.lib │ ├── clibol.lib │ ├── clibom.lib │ ├── clibs.lib │ ├── commode.obj │ ├── cstart_t.obj │ ├── d16msels.obj │ ├── dos16m.obj │ ├── doslfnc.lib │ ├── doslfnl.lib │ ├── doslfnm.lib │ ├── doslfnol.lib │ ├── doslfnom.lib │ ├── doslfns.lib │ ├── emu87.lib │ ├── graph.lib │ ├── graph2.lib │ ├── pc98c.lib │ ├── pc98l.lib │ ├── pc98m.lib │ ├── pc98ol.lib │ ├── pc98om.lib │ ├── pc98s.lib │ └── wovl.lib ├── emu87.lib ├── math87c.lib ├── math87l.lib ├── math87m.lib ├── math87s.lib ├── mathc.lib ├── mathl.lib ├── mathm.lib ├── maths.lib ├── noemu87.lib ├── plbxc.lib ├── plbxl.lib ├── plbxm.lib ├── plbxs.lib ├── plibc.lib ├── plibl.lib ├── plibm.lib └── plibs.lib ├── lib386 ├── dos │ ├── binmode.obj │ ├── clib3r.lib │ ├── clib3s.lib │ ├── commode.obj │ ├── cstrtx3r.obj │ ├── cstrtx3s.obj │ ├── cwdll.lib │ ├── dllstrtr.obj │ ├── dllstrts.obj │ ├── doslfn3r.lib │ ├── doslfn3s.lib │ ├── emu387.lib │ ├── graph.lib │ ├── graph2.lib │ ├── pc983r.lib │ └── pc983s.lib ├── emu387.lib ├── math387r.lib ├── math387s.lib ├── math3r.lib ├── math3s.lib └── noemu387.lib ├── license.txt ├── owsetenv.bat ├── readme.txt └── src ├── editdll ├── wedit.doc └── wedit.h └── wstub.asm /LICENSE.md: -------------------------------------------------------------------------------- 1 | Abandonware. This is not a license. 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/README.md -------------------------------------------------------------------------------- /c600/bin/c1.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/c1.err -------------------------------------------------------------------------------- /c600/bin/c1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/c1.exe -------------------------------------------------------------------------------- /c600/bin/c1l.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/c1l.exe -------------------------------------------------------------------------------- /c600/bin/c2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/c2.exe -------------------------------------------------------------------------------- /c600/bin/c23.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/c23.err -------------------------------------------------------------------------------- /c600/bin/c3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/c3.exe -------------------------------------------------------------------------------- /c600/bin/cl.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/cl.err -------------------------------------------------------------------------------- /c600/bin/cl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/cl.exe -------------------------------------------------------------------------------- /c600/bin/cl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/cl.msg -------------------------------------------------------------------------------- /c600/bin/cv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/cv.exe -------------------------------------------------------------------------------- /c600/bin/fixshift.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/fixshift.com -------------------------------------------------------------------------------- /c600/bin/msherc.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/msherc.com -------------------------------------------------------------------------------- /c600/bin/nmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/nmake.exe -------------------------------------------------------------------------------- /c600/bin/nmk.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/nmk.com -------------------------------------------------------------------------------- /c600/bin/qcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/bin/qcc.exe -------------------------------------------------------------------------------- /c600/binb/bind.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/bind.exe -------------------------------------------------------------------------------- /c600/binb/cvpack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/cvpack.exe -------------------------------------------------------------------------------- /c600/binb/exehdr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/exehdr.exe -------------------------------------------------------------------------------- /c600/binb/helpmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/helpmake.exe -------------------------------------------------------------------------------- /c600/binb/ilink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/ilink.exe -------------------------------------------------------------------------------- /c600/binb/ilinkstb.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/ilinkstb.ovl -------------------------------------------------------------------------------- /c600/binb/implib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/implib.exe -------------------------------------------------------------------------------- /c600/binb/lib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/lib.exe -------------------------------------------------------------------------------- /c600/binb/link.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/link.exe -------------------------------------------------------------------------------- /c600/binb/qh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/qh.exe -------------------------------------------------------------------------------- /c600/binb/readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/readme.doc -------------------------------------------------------------------------------- /c600/binb/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/binb/setup.exe -------------------------------------------------------------------------------- /c600/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/assert.h -------------------------------------------------------------------------------- /c600/include/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/bios.h -------------------------------------------------------------------------------- /c600/include/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/conio.h -------------------------------------------------------------------------------- /c600/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/ctype.h -------------------------------------------------------------------------------- /c600/include/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/direct.h -------------------------------------------------------------------------------- /c600/include/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/dos.h -------------------------------------------------------------------------------- /c600/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/errno.h -------------------------------------------------------------------------------- /c600/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/fcntl.h -------------------------------------------------------------------------------- /c600/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/float.h -------------------------------------------------------------------------------- /c600/include/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/graph.h -------------------------------------------------------------------------------- /c600/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/io.h -------------------------------------------------------------------------------- /c600/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/limits.h -------------------------------------------------------------------------------- /c600/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/locale.h -------------------------------------------------------------------------------- /c600/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/malloc.h -------------------------------------------------------------------------------- /c600/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/math.h -------------------------------------------------------------------------------- /c600/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/memory.h -------------------------------------------------------------------------------- /c600/include/pgchart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/pgchart.h -------------------------------------------------------------------------------- /c600/include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/process.h -------------------------------------------------------------------------------- /c600/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/search.h -------------------------------------------------------------------------------- /c600/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/setjmp.h -------------------------------------------------------------------------------- /c600/include/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/share.h -------------------------------------------------------------------------------- /c600/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/signal.h -------------------------------------------------------------------------------- /c600/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/stdarg.h -------------------------------------------------------------------------------- /c600/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/stddef.h -------------------------------------------------------------------------------- /c600/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/stdio.h -------------------------------------------------------------------------------- /c600/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/stdlib.h -------------------------------------------------------------------------------- /c600/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/string.h -------------------------------------------------------------------------------- /c600/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/time.h -------------------------------------------------------------------------------- /c600/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/include/varargs.h -------------------------------------------------------------------------------- /c600/lib/api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/api.lib -------------------------------------------------------------------------------- /c600/lib/binmode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/binmode.obj -------------------------------------------------------------------------------- /c600/lib/clibc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/clibc7.lib -------------------------------------------------------------------------------- /c600/lib/clibca.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/clibca.lib -------------------------------------------------------------------------------- /c600/lib/clibce.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/clibce.lib -------------------------------------------------------------------------------- /c600/lib/crtcom.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/crtcom.lib -------------------------------------------------------------------------------- /c600/lib/fileinfo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/fileinfo.obj -------------------------------------------------------------------------------- /c600/lib/graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/graphics.lib -------------------------------------------------------------------------------- /c600/lib/llibc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/llibc7.lib -------------------------------------------------------------------------------- /c600/lib/llibca.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/llibca.lib -------------------------------------------------------------------------------- /c600/lib/llibce.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/llibce.lib -------------------------------------------------------------------------------- /c600/lib/mlibc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/mlibc7.lib -------------------------------------------------------------------------------- /c600/lib/mlibca.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/mlibca.lib -------------------------------------------------------------------------------- /c600/lib/mlibce.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/mlibce.lib -------------------------------------------------------------------------------- /c600/lib/pgchart.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/pgchart.lib -------------------------------------------------------------------------------- /c600/lib/rmfixup.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/rmfixup.obj -------------------------------------------------------------------------------- /c600/lib/setargv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/setargv.obj -------------------------------------------------------------------------------- /c600/lib/slibc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/slibc7.lib -------------------------------------------------------------------------------- /c600/lib/slibca.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/slibca.lib -------------------------------------------------------------------------------- /c600/lib/slibce.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/slibce.lib -------------------------------------------------------------------------------- /c600/lib/txtonly.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/txtonly.obj -------------------------------------------------------------------------------- /c600/lib/varstck.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/lib/varstck.obj -------------------------------------------------------------------------------- /c600/new-conf.sys: -------------------------------------------------------------------------------- 1 | files=20 2 | buffers=10 3 | device=C:\C600\BIN\himem.sys 4 | -------------------------------------------------------------------------------- /c600/new-vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c600/new-vars.bat -------------------------------------------------------------------------------- /c86plus/arc/c386.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/arc/c386.arc -------------------------------------------------------------------------------- /c86plus/arc/cbasea.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/arc/cbasea.arc -------------------------------------------------------------------------------- /c86plus/arc/cbasec.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/arc/cbasec.arc -------------------------------------------------------------------------------- /c86plus/arc/cfio.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/arc/cfio.arc -------------------------------------------------------------------------------- /c86plus/arc/cfpi.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/arc/cfpi.arc -------------------------------------------------------------------------------- /c86plus/arc/cibm.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/arc/cibm.arc -------------------------------------------------------------------------------- /c86plus/bin/arch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/bin/arch.exe -------------------------------------------------------------------------------- /c86plus/bin/carole.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/bin/carole.exe -------------------------------------------------------------------------------- /c86plus/bin/cc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/bin/cc.exe -------------------------------------------------------------------------------- /c86plus/bin/cc.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/bin/cc.pif -------------------------------------------------------------------------------- /c86plus/bin/make.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/bin/make.exe -------------------------------------------------------------------------------- /c86plus/bin/marion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/bin/marion.exe -------------------------------------------------------------------------------- /c86plus/bin/touch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/bin/touch.exe -------------------------------------------------------------------------------- /c86plus/c86plus.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/c86plus.ver -------------------------------------------------------------------------------- /c86plus/c86vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/c86vars.bat -------------------------------------------------------------------------------- /c86plus/cc1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/cc1.bat -------------------------------------------------------------------------------- /c86plus/include/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/include/dos.h -------------------------------------------------------------------------------- /c86plus/include/ibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/include/ibm.h -------------------------------------------------------------------------------- /c86plus/include/intr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/include/intr.h -------------------------------------------------------------------------------- /c86plus/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/include/io.h -------------------------------------------------------------------------------- /c86plus/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/include/math.h -------------------------------------------------------------------------------- /c86plus/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/include/time.h -------------------------------------------------------------------------------- /c86plus/lib/cfpi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/lib/cfpi.lib -------------------------------------------------------------------------------- /c86plus/lib/cfpi87.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/lib/cfpi87.lib -------------------------------------------------------------------------------- /c86plus/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/c86plus/read.me -------------------------------------------------------------------------------- /ic86/ic86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/ic86.exe -------------------------------------------------------------------------------- /ic86/inc/_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/_alloc.h -------------------------------------------------------------------------------- /ic86/inc/_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/_clib.h -------------------------------------------------------------------------------- /ic86/inc/_dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/_dos.h -------------------------------------------------------------------------------- /ic86/inc/_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/_math.h -------------------------------------------------------------------------------- /ic86/inc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/assert.h -------------------------------------------------------------------------------- /ic86/inc/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/bios.h -------------------------------------------------------------------------------- /ic86/inc/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/conio.h -------------------------------------------------------------------------------- /ic86/inc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/ctype.h -------------------------------------------------------------------------------- /ic86/inc/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/direct.h -------------------------------------------------------------------------------- /ic86/inc/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/dos.h -------------------------------------------------------------------------------- /ic86/inc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/errno.h -------------------------------------------------------------------------------- /ic86/inc/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/fcntl.h -------------------------------------------------------------------------------- /ic86/inc/fileio3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/fileio3.h -------------------------------------------------------------------------------- /ic86/inc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/float.h -------------------------------------------------------------------------------- /ic86/inc/i186.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/i186.h -------------------------------------------------------------------------------- /ic86/inc/i286.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/i286.h -------------------------------------------------------------------------------- /ic86/inc/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/i386.h -------------------------------------------------------------------------------- /ic86/inc/i486.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/i486.h -------------------------------------------------------------------------------- /ic86/inc/i8086.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/i8086.h -------------------------------------------------------------------------------- /ic86/inc/i86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/i86.h -------------------------------------------------------------------------------- /ic86/inc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/io.h -------------------------------------------------------------------------------- /ic86/inc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/limits.h -------------------------------------------------------------------------------- /ic86/inc/lint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/lint.h -------------------------------------------------------------------------------- /ic86/inc/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/locale.h -------------------------------------------------------------------------------- /ic86/inc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/math.h -------------------------------------------------------------------------------- /ic86/inc/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/process.h -------------------------------------------------------------------------------- /ic86/inc/reent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/reent.h -------------------------------------------------------------------------------- /ic86/inc/rmxc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/rmxc.h -------------------------------------------------------------------------------- /ic86/inc/rmxerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/rmxerr.h -------------------------------------------------------------------------------- /ic86/inc/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/search.h -------------------------------------------------------------------------------- /ic86/inc/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/setjmp.h -------------------------------------------------------------------------------- /ic86/inc/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/share.h -------------------------------------------------------------------------------- /ic86/inc/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/signal.h -------------------------------------------------------------------------------- /ic86/inc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/stdarg.h -------------------------------------------------------------------------------- /ic86/inc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/stddef.h -------------------------------------------------------------------------------- /ic86/inc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/stdio.h -------------------------------------------------------------------------------- /ic86/inc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/stdlib.h -------------------------------------------------------------------------------- /ic86/inc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/string.h -------------------------------------------------------------------------------- /ic86/inc/sys/locking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/sys/locking.h -------------------------------------------------------------------------------- /ic86/inc/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/sys/stat.h -------------------------------------------------------------------------------- /ic86/inc/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/sys/types.h -------------------------------------------------------------------------------- /ic86/inc/sys/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/sys/utime.h -------------------------------------------------------------------------------- /ic86/inc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/time.h -------------------------------------------------------------------------------- /ic86/inc/udi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/udi.h -------------------------------------------------------------------------------- /ic86/inc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/unistd.h -------------------------------------------------------------------------------- /ic86/inc/util.ah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/inc/util.ah -------------------------------------------------------------------------------- /ic86/libs/cdosc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cdosc.lib -------------------------------------------------------------------------------- /ic86/libs/cdosl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cdosl.lib -------------------------------------------------------------------------------- /ic86/libs/cdosm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cdosm.lib -------------------------------------------------------------------------------- /ic86/libs/cdosnfc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cdosnfc.lib -------------------------------------------------------------------------------- /ic86/libs/cdosnfl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cdosnfl.lib -------------------------------------------------------------------------------- /ic86/libs/cdosnfm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cdosnfm.lib -------------------------------------------------------------------------------- /ic86/libs/cdosnfs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cdosnfs.lib -------------------------------------------------------------------------------- /ic86/libs/cdoss.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cdoss.lib -------------------------------------------------------------------------------- /ic86/libs/clib87.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clib87.lib -------------------------------------------------------------------------------- /ic86/libs/clibc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clibc.lib -------------------------------------------------------------------------------- /ic86/libs/clibl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clibl.lib -------------------------------------------------------------------------------- /ic86/libs/clibm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clibm.lib -------------------------------------------------------------------------------- /ic86/libs/clibnfc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clibnfc.lib -------------------------------------------------------------------------------- /ic86/libs/clibnfl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clibnfl.lib -------------------------------------------------------------------------------- /ic86/libs/clibnfm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clibnfm.lib -------------------------------------------------------------------------------- /ic86/libs/clibnfs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clibnfs.lib -------------------------------------------------------------------------------- /ic86/libs/clibs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/clibs.lib -------------------------------------------------------------------------------- /ic86/libs/crmx1c.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/crmx1c.lib -------------------------------------------------------------------------------- /ic86/libs/crmx1l.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/crmx1l.lib -------------------------------------------------------------------------------- /ic86/libs/crmxnf1c.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/crmxnf1c.lib -------------------------------------------------------------------------------- /ic86/libs/crmxnf1l.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/crmxnf1l.lib -------------------------------------------------------------------------------- /ic86/libs/cstdosc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstdosc.obj -------------------------------------------------------------------------------- /ic86/libs/cstdosl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstdosl.obj -------------------------------------------------------------------------------- /ic86/libs/cstdosm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstdosm.obj -------------------------------------------------------------------------------- /ic86/libs/cstdoss.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstdoss.obj -------------------------------------------------------------------------------- /ic86/libs/cstembc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstembc.obj -------------------------------------------------------------------------------- /ic86/libs/cstembl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstembl.obj -------------------------------------------------------------------------------- /ic86/libs/cstembm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstembm.obj -------------------------------------------------------------------------------- /ic86/libs/cstembs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstembs.obj -------------------------------------------------------------------------------- /ic86/libs/cstrmxc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstrmxc.obj -------------------------------------------------------------------------------- /ic86/libs/cstrmxl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/libs/cstrmxl.obj -------------------------------------------------------------------------------- /ic86/src/_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/src/_create.c -------------------------------------------------------------------------------- /ic86/src/_semapho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/src/_semapho.c -------------------------------------------------------------------------------- /ic86/src/cstart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/ic86/src/cstart.asm -------------------------------------------------------------------------------- /lc/8087.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/8087.mac -------------------------------------------------------------------------------- /lc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/assert.h -------------------------------------------------------------------------------- /lc/c-sprite.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/c-sprite.hlp -------------------------------------------------------------------------------- /lc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/ctype.h -------------------------------------------------------------------------------- /lc/d/c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/c.obj -------------------------------------------------------------------------------- /lc/d/dos.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/dos.mac -------------------------------------------------------------------------------- /lc/d/lc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/lc.lib -------------------------------------------------------------------------------- /lc/d/lcg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/lcg.lib -------------------------------------------------------------------------------- /lc/d/lcm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/lcm.lib -------------------------------------------------------------------------------- /lc/d/lco.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/lco.lib -------------------------------------------------------------------------------- /lc/d/lcr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/lcr.lib -------------------------------------------------------------------------------- /lc/d/ndp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/ndp.lib -------------------------------------------------------------------------------- /lc/d/nondp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/d/nondp.lib -------------------------------------------------------------------------------- /lc/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/dos.h -------------------------------------------------------------------------------- /lc/doscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/doscalls.h -------------------------------------------------------------------------------- /lc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/error.h -------------------------------------------------------------------------------- /lc/examples/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/cat.c -------------------------------------------------------------------------------- /lc/examples/demo.bat: -------------------------------------------------------------------------------- 1 | cs @fxu.dem -------------------------------------------------------------------------------- /lc/examples/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/draw.c -------------------------------------------------------------------------------- /lc/examples/draw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/draw.exe -------------------------------------------------------------------------------- /lc/examples/ftoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/ftoc.c -------------------------------------------------------------------------------- /lc/examples/fxu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/fxu.c -------------------------------------------------------------------------------- /lc/examples/fxu.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/fxu.dem -------------------------------------------------------------------------------- /lc/examples/fxu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/fxu.exe -------------------------------------------------------------------------------- /lc/examples/fxu.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/fxu.map -------------------------------------------------------------------------------- /lc/examples/fxu.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/fxu.obj -------------------------------------------------------------------------------- /lc/examples/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/examples/info.c -------------------------------------------------------------------------------- /lc/examples/makedraw.bat: -------------------------------------------------------------------------------- 1 | lc -Lgm -n -v -md draw 2 | -------------------------------------------------------------------------------- /lc/family.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/family.cs -------------------------------------------------------------------------------- /lc/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/fcntl.h -------------------------------------------------------------------------------- /lc/fctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/fctype.h -------------------------------------------------------------------------------- /lc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/float.h -------------------------------------------------------------------------------- /lc/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/gfx.h -------------------------------------------------------------------------------- /lc/gfxg_pro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/gfxg_pro.h -------------------------------------------------------------------------------- /lc/ios1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/ios1.h -------------------------------------------------------------------------------- /lc/l/c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/c.obj -------------------------------------------------------------------------------- /lc/l/dos.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/dos.mac -------------------------------------------------------------------------------- /lc/l/lc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/lc.lib -------------------------------------------------------------------------------- /lc/l/lcg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/lcg.lib -------------------------------------------------------------------------------- /lc/l/lcm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/lcm.lib -------------------------------------------------------------------------------- /lc/l/lco.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/lco.lib -------------------------------------------------------------------------------- /lc/l/lcr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/lcr.lib -------------------------------------------------------------------------------- /lc/l/ndp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/ndp.lib -------------------------------------------------------------------------------- /lc/l/nondp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/l/nondp.lib -------------------------------------------------------------------------------- /lc/lapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lapi.lib -------------------------------------------------------------------------------- /lc/lbind.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lbind.exe -------------------------------------------------------------------------------- /lc/lc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lc.exe -------------------------------------------------------------------------------- /lc/lc.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lc.hlp -------------------------------------------------------------------------------- /lc/lc.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lc.mac -------------------------------------------------------------------------------- /lc/lc1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lc1.exe -------------------------------------------------------------------------------- /lc/lc1.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lc1.msg -------------------------------------------------------------------------------- /lc/lc1b.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lc1b.exe -------------------------------------------------------------------------------- /lc/lc2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lc2.exe -------------------------------------------------------------------------------- /lc/lc2b.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lc2b.exe -------------------------------------------------------------------------------- /lc/libmod.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/libmod.exe -------------------------------------------------------------------------------- /lc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/limits.h -------------------------------------------------------------------------------- /lc/llib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/llib.exe -------------------------------------------------------------------------------- /lc/locking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/locking.h -------------------------------------------------------------------------------- /lc/lpatch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lpatch.exe -------------------------------------------------------------------------------- /lc/lse.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lse.dat -------------------------------------------------------------------------------- /lc/lse.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lse.hlp -------------------------------------------------------------------------------- /lc/lse.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lse.msg -------------------------------------------------------------------------------- /lc/lseinst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lseinst.exe -------------------------------------------------------------------------------- /lc/lseinst.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/lseinst.msg -------------------------------------------------------------------------------- /lc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/math.h -------------------------------------------------------------------------------- /lc/nondp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/nondp.h -------------------------------------------------------------------------------- /lc/omd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/omd.exe -------------------------------------------------------------------------------- /lc/os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2.h -------------------------------------------------------------------------------- /lc/os2bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2bug.h -------------------------------------------------------------------------------- /lc/os2dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2dev.h -------------------------------------------------------------------------------- /lc/os2dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2dll.h -------------------------------------------------------------------------------- /lc/os2io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2io.h -------------------------------------------------------------------------------- /lc/os2ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2ipc.h -------------------------------------------------------------------------------- /lc/os2kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2kbd.h -------------------------------------------------------------------------------- /lc/os2mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2mem.h -------------------------------------------------------------------------------- /lc/os2misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2misc.h -------------------------------------------------------------------------------- /lc/os2mon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2mon.h -------------------------------------------------------------------------------- /lc/os2mou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2mou.h -------------------------------------------------------------------------------- /lc/os2nls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2nls.h -------------------------------------------------------------------------------- /lc/os2task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2task.h -------------------------------------------------------------------------------- /lc/os2time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2time.h -------------------------------------------------------------------------------- /lc/os2vio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/os2vio.h -------------------------------------------------------------------------------- /lc/p/c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/c.obj -------------------------------------------------------------------------------- /lc/p/dos.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/dos.mac -------------------------------------------------------------------------------- /lc/p/lc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/lc.lib -------------------------------------------------------------------------------- /lc/p/lcg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/lcg.lib -------------------------------------------------------------------------------- /lc/p/lcm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/lcm.lib -------------------------------------------------------------------------------- /lc/p/lco.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/lco.lib -------------------------------------------------------------------------------- /lc/p/lcr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/lcr.lib -------------------------------------------------------------------------------- /lc/p/ndp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/ndp.lib -------------------------------------------------------------------------------- /lc/p/nondp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/p/nondp.lib -------------------------------------------------------------------------------- /lc/pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/pc.h -------------------------------------------------------------------------------- /lc/pr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/pr.exe -------------------------------------------------------------------------------- /lc/prot/cs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/prot/cs.exe -------------------------------------------------------------------------------- /lc/prot/lse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/prot/lse.exe -------------------------------------------------------------------------------- /lc/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/read.me -------------------------------------------------------------------------------- /lc/real/cs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/real/cs.exe -------------------------------------------------------------------------------- /lc/real/lse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/real/lse.exe -------------------------------------------------------------------------------- /lc/s/c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/c.obj -------------------------------------------------------------------------------- /lc/s/dos.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/dos.mac -------------------------------------------------------------------------------- /lc/s/lc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/lc.lib -------------------------------------------------------------------------------- /lc/s/lcg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/lcg.lib -------------------------------------------------------------------------------- /lc/s/lcm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/lcm.lib -------------------------------------------------------------------------------- /lc/s/lco.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/lco.lib -------------------------------------------------------------------------------- /lc/s/lcr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/lcr.lib -------------------------------------------------------------------------------- /lc/s/ndp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/ndp.lib -------------------------------------------------------------------------------- /lc/s/nondp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/s/nondp.lib -------------------------------------------------------------------------------- /lc/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/setjmp.h -------------------------------------------------------------------------------- /lc/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/signal.h -------------------------------------------------------------------------------- /lc/source/_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/_assert.c -------------------------------------------------------------------------------- /lc/source/_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/_main.c -------------------------------------------------------------------------------- /lc/source/c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/c.asm -------------------------------------------------------------------------------- /lc/source/cxferr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/cxferr.c -------------------------------------------------------------------------------- /lc/source/cxkerr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/cxkerr.asm -------------------------------------------------------------------------------- /lc/source/cxserr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/cxserr.asm -------------------------------------------------------------------------------- /lc/source/io.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/io.asm -------------------------------------------------------------------------------- /lc/source/kio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/kio.c -------------------------------------------------------------------------------- /lc/source/matherr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/matherr.c -------------------------------------------------------------------------------- /lc/source/oserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/oserr.c -------------------------------------------------------------------------------- /lc/source/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/stack.c -------------------------------------------------------------------------------- /lc/source/syserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/syserr.c -------------------------------------------------------------------------------- /lc/source/template.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/template.asm -------------------------------------------------------------------------------- /lc/source/vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/source/vio.c -------------------------------------------------------------------------------- /lc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/stdio.h -------------------------------------------------------------------------------- /lc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/stdlib.h -------------------------------------------------------------------------------- /lc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/string.h -------------------------------------------------------------------------------- /lc/subcalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/subcalls.h -------------------------------------------------------------------------------- /lc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/time.h -------------------------------------------------------------------------------- /lc/unlstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/lc/unlstd.h -------------------------------------------------------------------------------- /masm611/bin/cref.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/cref.doc -------------------------------------------------------------------------------- /masm611/bin/cref.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/cref.exe -------------------------------------------------------------------------------- /masm611/bin/dosxnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/dosxnt.exe -------------------------------------------------------------------------------- /masm611/bin/h2inc.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/h2inc.err -------------------------------------------------------------------------------- /masm611/bin/h2inc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/h2inc.exe -------------------------------------------------------------------------------- /masm611/bin/masm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/masm.exe -------------------------------------------------------------------------------- /masm611/bin/ml.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/ml.err -------------------------------------------------------------------------------- /masm611/bin/ml.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/ml.exe -------------------------------------------------------------------------------- /masm611/bin/nmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/nmake.exe -------------------------------------------------------------------------------- /masm611/bin/nmaker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/bin/nmaker.exe -------------------------------------------------------------------------------- /masm611/binr/cv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/cv.exe -------------------------------------------------------------------------------- /masm611/binr/dmw0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/dmw0.dll -------------------------------------------------------------------------------- /masm611/binr/exp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/exp.exe -------------------------------------------------------------------------------- /masm611/binr/lib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/lib.exe -------------------------------------------------------------------------------- /masm611/binr/link.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/link.exe -------------------------------------------------------------------------------- /masm611/binr/msd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/msd.exe -------------------------------------------------------------------------------- /masm611/binr/msd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/msd.txt -------------------------------------------------------------------------------- /masm611/binr/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/rm.exe -------------------------------------------------------------------------------- /masm611/binr/shd1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/shd1.dll -------------------------------------------------------------------------------- /masm611/binr/undel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/binr/undel.exe -------------------------------------------------------------------------------- /masm611/cv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/cv.txt -------------------------------------------------------------------------------- /masm611/errmsg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/errmsg.txt -------------------------------------------------------------------------------- /masm611/new-conf.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/new-conf.sys -------------------------------------------------------------------------------- /masm611/new-vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/new-vars.bat -------------------------------------------------------------------------------- /masm611/pentium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/pentium.txt -------------------------------------------------------------------------------- /masm611/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/readme.txt -------------------------------------------------------------------------------- /masm611/support.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/masm611/support.txt -------------------------------------------------------------------------------- /qc25/bin/_qcl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/_qcl.exe -------------------------------------------------------------------------------- /qc25/bin/brief.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/brief.key -------------------------------------------------------------------------------- /qc25/bin/c1.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/c1.err -------------------------------------------------------------------------------- /qc25/bin/crlf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/crlf.exe -------------------------------------------------------------------------------- /qc25/bin/emacs.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/emacs.key -------------------------------------------------------------------------------- /qc25/bin/epsilon.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/epsilon.key -------------------------------------------------------------------------------- /qc25/bin/errors.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/errors.hlp -------------------------------------------------------------------------------- /qc25/bin/fixshift.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/fixshift.com -------------------------------------------------------------------------------- /qc25/bin/graphics.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/graphics.hlp -------------------------------------------------------------------------------- /qc25/bin/ilink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/ilink.exe -------------------------------------------------------------------------------- /qc25/bin/ilinkstb.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/ilinkstb.ovl -------------------------------------------------------------------------------- /qc25/bin/lib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/lib.exe -------------------------------------------------------------------------------- /qc25/bin/me.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/me.key -------------------------------------------------------------------------------- /qc25/bin/mkkey.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/mkkey.exe -------------------------------------------------------------------------------- /qc25/bin/msherc.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/msherc.com -------------------------------------------------------------------------------- /qc25/bin/nmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/nmake.exe -------------------------------------------------------------------------------- /qc25/bin/nmk.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/nmk.com -------------------------------------------------------------------------------- /qc25/bin/qa.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qa.hlp -------------------------------------------------------------------------------- /qc25/bin/qas.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qas.ovl -------------------------------------------------------------------------------- /qc25/bin/qc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qc.exe -------------------------------------------------------------------------------- /qc25/bin/qc.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qc.hlp -------------------------------------------------------------------------------- /qc25/bin/qc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qc.ini -------------------------------------------------------------------------------- /qc25/bin/qc.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qc.key -------------------------------------------------------------------------------- /qc25/bin/qcc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qcc.dat -------------------------------------------------------------------------------- /qc25/bin/qcc.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qcc.ovl -------------------------------------------------------------------------------- /qc25/bin/qcenv.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qcenv.hlp -------------------------------------------------------------------------------- /qc25/bin/qcl.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qcl.err -------------------------------------------------------------------------------- /qc25/bin/qcl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qcl.exe -------------------------------------------------------------------------------- /qc25/bin/qcl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qcl.msg -------------------------------------------------------------------------------- /qc25/bin/qlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/qlink.exe -------------------------------------------------------------------------------- /qc25/bin/readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/readme.doc -------------------------------------------------------------------------------- /qc25/bin/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/bin/setup.exe -------------------------------------------------------------------------------- /qc25/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/assert.h -------------------------------------------------------------------------------- /qc25/include/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/bios.h -------------------------------------------------------------------------------- /qc25/include/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/conio.h -------------------------------------------------------------------------------- /qc25/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/ctype.h -------------------------------------------------------------------------------- /qc25/include/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/direct.h -------------------------------------------------------------------------------- /qc25/include/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/dos.h -------------------------------------------------------------------------------- /qc25/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/errno.h -------------------------------------------------------------------------------- /qc25/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/fcntl.h -------------------------------------------------------------------------------- /qc25/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/float.h -------------------------------------------------------------------------------- /qc25/include/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/graph.h -------------------------------------------------------------------------------- /qc25/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/io.h -------------------------------------------------------------------------------- /qc25/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/limits.h -------------------------------------------------------------------------------- /qc25/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/locale.h -------------------------------------------------------------------------------- /qc25/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/malloc.h -------------------------------------------------------------------------------- /qc25/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/math.h -------------------------------------------------------------------------------- /qc25/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/memory.h -------------------------------------------------------------------------------- /qc25/include/pgchart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/pgchart.h -------------------------------------------------------------------------------- /qc25/include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/process.h -------------------------------------------------------------------------------- /qc25/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/search.h -------------------------------------------------------------------------------- /qc25/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/setjmp.h -------------------------------------------------------------------------------- /qc25/include/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/share.h -------------------------------------------------------------------------------- /qc25/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/signal.h -------------------------------------------------------------------------------- /qc25/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/stdarg.h -------------------------------------------------------------------------------- /qc25/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/stddef.h -------------------------------------------------------------------------------- /qc25/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/stdio.h -------------------------------------------------------------------------------- /qc25/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/stdlib.h -------------------------------------------------------------------------------- /qc25/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/string.h -------------------------------------------------------------------------------- /qc25/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/time.h -------------------------------------------------------------------------------- /qc25/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/include/varargs.h -------------------------------------------------------------------------------- /qc25/lib/binmode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/binmode.obj -------------------------------------------------------------------------------- /qc25/lib/c51stubs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/c51stubs.lib -------------------------------------------------------------------------------- /qc25/lib/clibc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/clibc7.lib -------------------------------------------------------------------------------- /qc25/lib/clibce.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/clibce.lib -------------------------------------------------------------------------------- /qc25/lib/crtcom.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/crtcom.lib -------------------------------------------------------------------------------- /qc25/lib/fileinfo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/fileinfo.obj -------------------------------------------------------------------------------- /qc25/lib/graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/graphics.lib -------------------------------------------------------------------------------- /qc25/lib/llibc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/llibc7.lib -------------------------------------------------------------------------------- /qc25/lib/llibce.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/llibce.lib -------------------------------------------------------------------------------- /qc25/lib/mlibc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/mlibc7.lib -------------------------------------------------------------------------------- /qc25/lib/mlibce.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/mlibce.lib -------------------------------------------------------------------------------- /qc25/lib/pgchart.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/pgchart.lib -------------------------------------------------------------------------------- /qc25/lib/rmfixup.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/rmfixup.obj -------------------------------------------------------------------------------- /qc25/lib/setargv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/setargv.obj -------------------------------------------------------------------------------- /qc25/lib/slibc7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/slibc7.lib -------------------------------------------------------------------------------- /qc25/lib/slibce.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/slibce.lib -------------------------------------------------------------------------------- /qc25/lib/txtonly.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/txtonly.obj -------------------------------------------------------------------------------- /qc25/lib/varstck.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/lib/varstck.obj -------------------------------------------------------------------------------- /qc25/new-conf.sys: -------------------------------------------------------------------------------- 1 | files=20 2 | buffers=10 3 | -------------------------------------------------------------------------------- /qc25/new-vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/qc25/new-vars.bat -------------------------------------------------------------------------------- /tasm/bin/32rtm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/32rtm.exe -------------------------------------------------------------------------------- /tasm/bin/brc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/brc.exe -------------------------------------------------------------------------------- /tasm/bin/brc32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/brc32.exe -------------------------------------------------------------------------------- /tasm/bin/brcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/brcc.exe -------------------------------------------------------------------------------- /tasm/bin/brcc32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/brcc32.exe -------------------------------------------------------------------------------- /tasm/bin/builtins.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/builtins.mak -------------------------------------------------------------------------------- /tasm/bin/dpmi16bi.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/dpmi16bi.ovl -------------------------------------------------------------------------------- /tasm/bin/dpmi32vm.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/dpmi32vm.ovl -------------------------------------------------------------------------------- /tasm/bin/grep.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/grep.com -------------------------------------------------------------------------------- /tasm/bin/groups.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/groups.exe -------------------------------------------------------------------------------- /tasm/bin/h2ash.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/h2ash.exe -------------------------------------------------------------------------------- /tasm/bin/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/help.ico -------------------------------------------------------------------------------- /tasm/bin/impdef.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/impdef.exe -------------------------------------------------------------------------------- /tasm/bin/implib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/implib.exe -------------------------------------------------------------------------------- /tasm/bin/make.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/make.exe -------------------------------------------------------------------------------- /tasm/bin/maker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/maker.exe -------------------------------------------------------------------------------- /tasm/bin/makeswap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/makeswap.exe -------------------------------------------------------------------------------- /tasm/bin/objxref.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/objxref.exe -------------------------------------------------------------------------------- /tasm/bin/rlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/rlink.exe -------------------------------------------------------------------------------- /tasm/bin/rlink32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/rlink32.dll -------------------------------------------------------------------------------- /tasm/bin/rtm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/rtm.exe -------------------------------------------------------------------------------- /tasm/bin/rw32core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/rw32core.dll -------------------------------------------------------------------------------- /tasm/bin/rwres.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/rwres.dll -------------------------------------------------------------------------------- /tasm/bin/tasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/tasm.exe -------------------------------------------------------------------------------- /tasm/bin/tasm.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/tasm.hlp -------------------------------------------------------------------------------- /tasm/bin/tasmx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/tasmx.exe -------------------------------------------------------------------------------- /tasm/bin/tdmem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/tdmem.exe -------------------------------------------------------------------------------- /tasm/bin/tdstrip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/tdstrip.exe -------------------------------------------------------------------------------- /tasm/bin/tdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/tdump.exe -------------------------------------------------------------------------------- /tasm/bin/thunk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/thunk.exe -------------------------------------------------------------------------------- /tasm/bin/tlib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/tlib.exe -------------------------------------------------------------------------------- /tasm/bin/tlink.cfg: -------------------------------------------------------------------------------- 1 | -LC:\TASM\LIB 2 | -------------------------------------------------------------------------------- /tasm/bin/tlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/tlink.exe -------------------------------------------------------------------------------- /tasm/bin/touch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/touch.exe -------------------------------------------------------------------------------- /tasm/bin/windpmi.386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/windpmi.386 -------------------------------------------------------------------------------- /tasm/bin/winstub.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/winstub.exe -------------------------------------------------------------------------------- /tasm/bin/workopt.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/bin/workopt.dos -------------------------------------------------------------------------------- /tasm/lib/import.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/lib/import.lib -------------------------------------------------------------------------------- /tasm/tsm_inst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/tsm_inst.txt -------------------------------------------------------------------------------- /tasm/tsm_rdme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tasm/tsm_rdme.txt -------------------------------------------------------------------------------- /tc/att.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/att.bgi -------------------------------------------------------------------------------- /tc/bgidemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/bgidemo.c -------------------------------------------------------------------------------- /tc/bgiobj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/bgiobj.exe -------------------------------------------------------------------------------- /tc/build-c0.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/build-c0.bat -------------------------------------------------------------------------------- /tc/c0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/c0.asm -------------------------------------------------------------------------------- /tc/cbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/cbar.c -------------------------------------------------------------------------------- /tc/cga.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/cga.bgi -------------------------------------------------------------------------------- /tc/cinstxfr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/cinstxfr.exe -------------------------------------------------------------------------------- /tc/cpasdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/cpasdemo.c -------------------------------------------------------------------------------- /tc/cpasdemo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/cpasdemo.pas -------------------------------------------------------------------------------- /tc/cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/cpp.exe -------------------------------------------------------------------------------- /tc/ctopas.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/ctopas.tc -------------------------------------------------------------------------------- /tc/egavga.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/egavga.bgi -------------------------------------------------------------------------------- /tc/emuvars.asi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/emuvars.asi -------------------------------------------------------------------------------- /tc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/getopt.c -------------------------------------------------------------------------------- /tc/goth.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/goth.chr -------------------------------------------------------------------------------- /tc/grep.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/grep.com -------------------------------------------------------------------------------- /tc/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/hello.c -------------------------------------------------------------------------------- /tc/helpme!.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/helpme!.doc -------------------------------------------------------------------------------- /tc/herc.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/herc.bgi -------------------------------------------------------------------------------- /tc/ibm8514.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/ibm8514.bgi -------------------------------------------------------------------------------- /tc/include/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/alloc.h -------------------------------------------------------------------------------- /tc/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/assert.h -------------------------------------------------------------------------------- /tc/include/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/bios.h -------------------------------------------------------------------------------- /tc/include/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/conio.h -------------------------------------------------------------------------------- /tc/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/ctype.h -------------------------------------------------------------------------------- /tc/include/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/dir.h -------------------------------------------------------------------------------- /tc/include/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/dos.h -------------------------------------------------------------------------------- /tc/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/errno.h -------------------------------------------------------------------------------- /tc/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/fcntl.h -------------------------------------------------------------------------------- /tc/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/float.h -------------------------------------------------------------------------------- /tc/include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/graphics.h -------------------------------------------------------------------------------- /tc/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/io.h -------------------------------------------------------------------------------- /tc/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/limits.h -------------------------------------------------------------------------------- /tc/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/math.h -------------------------------------------------------------------------------- /tc/include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/mem.h -------------------------------------------------------------------------------- /tc/include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/process.h -------------------------------------------------------------------------------- /tc/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/setjmp.h -------------------------------------------------------------------------------- /tc/include/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/share.h -------------------------------------------------------------------------------- /tc/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/signal.h -------------------------------------------------------------------------------- /tc/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/stdarg.h -------------------------------------------------------------------------------- /tc/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/stddef.h -------------------------------------------------------------------------------- /tc/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/stdio.h -------------------------------------------------------------------------------- /tc/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/stdlib.h -------------------------------------------------------------------------------- /tc/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/string.h -------------------------------------------------------------------------------- /tc/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/sys/stat.h -------------------------------------------------------------------------------- /tc/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/sys/timeb.h -------------------------------------------------------------------------------- /tc/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/sys/types.h -------------------------------------------------------------------------------- /tc/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/time.h -------------------------------------------------------------------------------- /tc/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/include/values.h -------------------------------------------------------------------------------- /tc/lib/c0c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/c0c.obj -------------------------------------------------------------------------------- /tc/lib/c0h.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/c0h.obj -------------------------------------------------------------------------------- /tc/lib/c0l.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/c0l.obj -------------------------------------------------------------------------------- /tc/lib/c0m.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/c0m.obj -------------------------------------------------------------------------------- /tc/lib/c0s.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/c0s.obj -------------------------------------------------------------------------------- /tc/lib/c0t.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/c0t.obj -------------------------------------------------------------------------------- /tc/lib/cc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/cc.lib -------------------------------------------------------------------------------- /tc/lib/ch.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/ch.lib -------------------------------------------------------------------------------- /tc/lib/cl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/cl.lib -------------------------------------------------------------------------------- /tc/lib/cm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/cm.lib -------------------------------------------------------------------------------- /tc/lib/cs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/cs.lib -------------------------------------------------------------------------------- /tc/lib/emu.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/emu.lib -------------------------------------------------------------------------------- /tc/lib/fp87.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/fp87.lib -------------------------------------------------------------------------------- /tc/lib/graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/graphics.lib -------------------------------------------------------------------------------- /tc/lib/init.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/init.obj -------------------------------------------------------------------------------- /tc/lib/mathc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/mathc.lib -------------------------------------------------------------------------------- /tc/lib/mathh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/mathh.lib -------------------------------------------------------------------------------- /tc/lib/mathl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/mathl.lib -------------------------------------------------------------------------------- /tc/lib/mathm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/mathm.lib -------------------------------------------------------------------------------- /tc/lib/maths.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/lib/maths.lib -------------------------------------------------------------------------------- /tc/litt.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/litt.chr -------------------------------------------------------------------------------- /tc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/main.c -------------------------------------------------------------------------------- /tc/make.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/make.exe -------------------------------------------------------------------------------- /tc/matherr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/matherr.c -------------------------------------------------------------------------------- /tc/mcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcalc.c -------------------------------------------------------------------------------- /tc/mcalc.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcalc.doc -------------------------------------------------------------------------------- /tc/mcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcalc.h -------------------------------------------------------------------------------- /tc/mcalc.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcalc.prj -------------------------------------------------------------------------------- /tc/mcdisply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcdisply.c -------------------------------------------------------------------------------- /tc/mcinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcinput.c -------------------------------------------------------------------------------- /tc/mcommand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcommand.c -------------------------------------------------------------------------------- /tc/mcparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcparser.c -------------------------------------------------------------------------------- /tc/mcutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/mcutil.c -------------------------------------------------------------------------------- /tc/objxref.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/objxref.com -------------------------------------------------------------------------------- /tc/pbar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/pbar.pro -------------------------------------------------------------------------------- /tc/pc3270.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/pc3270.bgi -------------------------------------------------------------------------------- /tc/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/readme -------------------------------------------------------------------------------- /tc/readme.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/readme.com -------------------------------------------------------------------------------- /tc/rules.asi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/rules.asi -------------------------------------------------------------------------------- /tc/sans.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/sans.chr -------------------------------------------------------------------------------- /tc/setargv.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/setargv.asm -------------------------------------------------------------------------------- /tc/setenvp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/setenvp.asm -------------------------------------------------------------------------------- /tc/ssignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/ssignal.c -------------------------------------------------------------------------------- /tc/tc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/tc.exe -------------------------------------------------------------------------------- /tc/tcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/tcc.exe -------------------------------------------------------------------------------- /tc/tcconfig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/tcconfig.exe -------------------------------------------------------------------------------- /tc/tchelp.tch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/tchelp.tch -------------------------------------------------------------------------------- /tc/tcinst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/tcinst.exe -------------------------------------------------------------------------------- /tc/thelp.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/thelp.com -------------------------------------------------------------------------------- /tc/thelp.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/thelp.doc -------------------------------------------------------------------------------- /tc/tlib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/tlib.exe -------------------------------------------------------------------------------- /tc/tlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/tlink.exe -------------------------------------------------------------------------------- /tc/touch.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/touch.com -------------------------------------------------------------------------------- /tc/trip.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/trip.chr -------------------------------------------------------------------------------- /tc/turboc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/turboc.cfg -------------------------------------------------------------------------------- /tc/wildargs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/wildargs.obj -------------------------------------------------------------------------------- /tc/wordcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/wordcnt.c -------------------------------------------------------------------------------- /tc/wordcnt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tc/wordcnt.dat -------------------------------------------------------------------------------- /tcpp/bgi/att.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/att.bgi -------------------------------------------------------------------------------- /tcpp/bgi/bgidemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/bgidemo.c -------------------------------------------------------------------------------- /tcpp/bgi/bgiobj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/bgiobj.exe -------------------------------------------------------------------------------- /tcpp/bgi/bold.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/bold.chr -------------------------------------------------------------------------------- /tcpp/bgi/cga.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/cga.bgi -------------------------------------------------------------------------------- /tcpp/bgi/egavga.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/egavga.bgi -------------------------------------------------------------------------------- /tcpp/bgi/euro.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/euro.chr -------------------------------------------------------------------------------- /tcpp/bgi/goth.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/goth.chr -------------------------------------------------------------------------------- /tcpp/bgi/herc.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/herc.bgi -------------------------------------------------------------------------------- /tcpp/bgi/ibm8514.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/ibm8514.bgi -------------------------------------------------------------------------------- /tcpp/bgi/lcom.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/lcom.chr -------------------------------------------------------------------------------- /tcpp/bgi/litt.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/litt.chr -------------------------------------------------------------------------------- /tcpp/bgi/pc3270.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/pc3270.bgi -------------------------------------------------------------------------------- /tcpp/bgi/sans.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/sans.chr -------------------------------------------------------------------------------- /tcpp/bgi/scri.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/scri.chr -------------------------------------------------------------------------------- /tcpp/bgi/simp.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/simp.chr -------------------------------------------------------------------------------- /tcpp/bgi/trip.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/trip.chr -------------------------------------------------------------------------------- /tcpp/bgi/tscr.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bgi/tscr.chr -------------------------------------------------------------------------------- /tcpp/bin/builtins.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/builtins.mak -------------------------------------------------------------------------------- /tcpp/bin/cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/cpp.exe -------------------------------------------------------------------------------- /tcpp/bin/dpmi16bi.ovl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/dpmi16bi.ovl -------------------------------------------------------------------------------- /tcpp/bin/dpmiinst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/dpmiinst.exe -------------------------------------------------------------------------------- /tcpp/bin/dpmiload.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/dpmiload.exe -------------------------------------------------------------------------------- /tcpp/bin/dpmimem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/dpmimem.dll -------------------------------------------------------------------------------- /tcpp/bin/dpmires.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/dpmires.exe -------------------------------------------------------------------------------- /tcpp/bin/emstest.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/emstest.com -------------------------------------------------------------------------------- /tcpp/bin/grep.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/grep.com -------------------------------------------------------------------------------- /tcpp/bin/make.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/make.exe -------------------------------------------------------------------------------- /tcpp/bin/maker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/maker.exe -------------------------------------------------------------------------------- /tcpp/bin/objxref.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/objxref.com -------------------------------------------------------------------------------- /tcpp/bin/prj2mak.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/prj2mak.exe -------------------------------------------------------------------------------- /tcpp/bin/tcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/tcc.exe -------------------------------------------------------------------------------- /tcpp/bin/tdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/tdump.exe -------------------------------------------------------------------------------- /tcpp/bin/tlib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/tlib.exe -------------------------------------------------------------------------------- /tcpp/bin/tlink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/tlink.exe -------------------------------------------------------------------------------- /tcpp/bin/touch.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/touch.com -------------------------------------------------------------------------------- /tcpp/bin/trigraph.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/trigraph.exe -------------------------------------------------------------------------------- /tcpp/bin/turboc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/turboc.cfg -------------------------------------------------------------------------------- /tcpp/bin/unzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/bin/unzip.exe -------------------------------------------------------------------------------- /tcpp/doc/ansi.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/ansi.doc -------------------------------------------------------------------------------- /tcpp/doc/basm.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/basm.doc -------------------------------------------------------------------------------- /tcpp/doc/brief.tem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/brief.tem -------------------------------------------------------------------------------- /tcpp/doc/classlib.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/classlib.doc -------------------------------------------------------------------------------- /tcpp/doc/cmacros.tem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/cmacros.tem -------------------------------------------------------------------------------- /tcpp/doc/defaults.tem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/defaults.tem -------------------------------------------------------------------------------- /tcpp/doc/dosedit.tem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/dosedit.tem -------------------------------------------------------------------------------- /tcpp/doc/epsilon.tem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/epsilon.tem -------------------------------------------------------------------------------- /tcpp/doc/helpme!.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/helpme!.doc -------------------------------------------------------------------------------- /tcpp/doc/util.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/doc/util.doc -------------------------------------------------------------------------------- /tcpp/filelist.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/filelist.doc -------------------------------------------------------------------------------- /tcpp/include/_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/_defs.h -------------------------------------------------------------------------------- /tcpp/include/_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/_null.h -------------------------------------------------------------------------------- /tcpp/include/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/alloc.h -------------------------------------------------------------------------------- /tcpp/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/assert.h -------------------------------------------------------------------------------- /tcpp/include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/bcd.h -------------------------------------------------------------------------------- /tcpp/include/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/bios.h -------------------------------------------------------------------------------- /tcpp/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/complex.h -------------------------------------------------------------------------------- /tcpp/include/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/conio.h -------------------------------------------------------------------------------- /tcpp/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/ctype.h -------------------------------------------------------------------------------- /tcpp/include/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/dir.h -------------------------------------------------------------------------------- /tcpp/include/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/direct.h -------------------------------------------------------------------------------- /tcpp/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/dirent.h -------------------------------------------------------------------------------- /tcpp/include/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/dos.h -------------------------------------------------------------------------------- /tcpp/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/errno.h -------------------------------------------------------------------------------- /tcpp/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/fcntl.h -------------------------------------------------------------------------------- /tcpp/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/float.h -------------------------------------------------------------------------------- /tcpp/include/fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/fstream.h -------------------------------------------------------------------------------- /tcpp/include/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/generic.h -------------------------------------------------------------------------------- /tcpp/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/io.h -------------------------------------------------------------------------------- /tcpp/include/iomanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/iomanip.h -------------------------------------------------------------------------------- /tcpp/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/limits.h -------------------------------------------------------------------------------- /tcpp/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/locale.h -------------------------------------------------------------------------------- /tcpp/include/locking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/locking.h -------------------------------------------------------------------------------- /tcpp/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/malloc.h -------------------------------------------------------------------------------- /tcpp/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/math.h -------------------------------------------------------------------------------- /tcpp/include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/mem.h -------------------------------------------------------------------------------- /tcpp/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/memory.h -------------------------------------------------------------------------------- /tcpp/include/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/new.h -------------------------------------------------------------------------------- /tcpp/include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/process.h -------------------------------------------------------------------------------- /tcpp/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/search.h -------------------------------------------------------------------------------- /tcpp/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/setjmp.h -------------------------------------------------------------------------------- /tcpp/include/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/share.h -------------------------------------------------------------------------------- /tcpp/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/signal.h -------------------------------------------------------------------------------- /tcpp/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/stdarg.h -------------------------------------------------------------------------------- /tcpp/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/stddef.h -------------------------------------------------------------------------------- /tcpp/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/stdio.h -------------------------------------------------------------------------------- /tcpp/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/stdlib.h -------------------------------------------------------------------------------- /tcpp/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/string.h -------------------------------------------------------------------------------- /tcpp/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/time.h -------------------------------------------------------------------------------- /tcpp/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/utime.h -------------------------------------------------------------------------------- /tcpp/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/values.h -------------------------------------------------------------------------------- /tcpp/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/include/varargs.h -------------------------------------------------------------------------------- /tcpp/lib/c0c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0c.obj -------------------------------------------------------------------------------- /tcpp/lib/c0fc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0fc.obj -------------------------------------------------------------------------------- /tcpp/lib/c0fh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0fh.obj -------------------------------------------------------------------------------- /tcpp/lib/c0fl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0fl.obj -------------------------------------------------------------------------------- /tcpp/lib/c0fm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0fm.obj -------------------------------------------------------------------------------- /tcpp/lib/c0fs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0fs.obj -------------------------------------------------------------------------------- /tcpp/lib/c0ft.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0ft.obj -------------------------------------------------------------------------------- /tcpp/lib/c0h.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0h.obj -------------------------------------------------------------------------------- /tcpp/lib/c0l.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0l.obj -------------------------------------------------------------------------------- /tcpp/lib/c0m.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0m.obj -------------------------------------------------------------------------------- /tcpp/lib/c0s.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0s.obj -------------------------------------------------------------------------------- /tcpp/lib/c0t.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/c0t.obj -------------------------------------------------------------------------------- /tcpp/lib/cc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/cc.lib -------------------------------------------------------------------------------- /tcpp/lib/ch.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/ch.lib -------------------------------------------------------------------------------- /tcpp/lib/cl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/cl.lib -------------------------------------------------------------------------------- /tcpp/lib/cm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/cm.lib -------------------------------------------------------------------------------- /tcpp/lib/cs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/cs.lib -------------------------------------------------------------------------------- /tcpp/lib/emu.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/emu.lib -------------------------------------------------------------------------------- /tcpp/lib/fp87.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/fp87.lib -------------------------------------------------------------------------------- /tcpp/lib/graphics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/graphics.lib -------------------------------------------------------------------------------- /tcpp/lib/mathc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/mathc.lib -------------------------------------------------------------------------------- /tcpp/lib/mathh.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/mathh.lib -------------------------------------------------------------------------------- /tcpp/lib/mathl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/mathl.lib -------------------------------------------------------------------------------- /tcpp/lib/mathm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/mathm.lib -------------------------------------------------------------------------------- /tcpp/lib/maths.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/maths.lib -------------------------------------------------------------------------------- /tcpp/lib/overlay.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/overlay.lib -------------------------------------------------------------------------------- /tcpp/lib/wildargs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/lib/wildargs.obj -------------------------------------------------------------------------------- /tcpp/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/readme -------------------------------------------------------------------------------- /tcpp/readme.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/tcpp/readme.com -------------------------------------------------------------------------------- /watcom/binw/addsrc.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/addsrc.dbg -------------------------------------------------------------------------------- /watcom/binw/bcnt.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/bcnt.dbg -------------------------------------------------------------------------------- /watcom/binw/bif.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/bif.dbg -------------------------------------------------------------------------------- /watcom/binw/bp.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/bp.dbg -------------------------------------------------------------------------------- /watcom/binw/bpatch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/bpatch.exe -------------------------------------------------------------------------------- /watcom/binw/c.prs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/c.prs -------------------------------------------------------------------------------- /watcom/binw/colour.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/colour.dbg -------------------------------------------------------------------------------- /watcom/binw/cpp.prs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/cpp.prs -------------------------------------------------------------------------------- /watcom/binw/ctags.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/ctags.exe -------------------------------------------------------------------------------- /watcom/binw/cvkeys.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/cvkeys.dbg -------------------------------------------------------------------------------- /watcom/binw/cvpack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/cvpack.exe -------------------------------------------------------------------------------- /watcom/binw/cw.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/cw.trp -------------------------------------------------------------------------------- /watcom/binw/cwc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/cwc.exe -------------------------------------------------------------------------------- /watcom/binw/cwhelp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/cwhelp.cfg -------------------------------------------------------------------------------- /watcom/binw/cwhelp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/cwhelp.exe -------------------------------------------------------------------------------- /watcom/binw/cwstub.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/cwstub.exe -------------------------------------------------------------------------------- /watcom/binw/dmpobj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/dmpobj.exe -------------------------------------------------------------------------------- /watcom/binw/dos32a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/dos32a.exe -------------------------------------------------------------------------------- /watcom/binw/dos4gw.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/dos4gw.doc -------------------------------------------------------------------------------- /watcom/binw/dos4gw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/dos4gw.exe -------------------------------------------------------------------------------- /watcom/binw/dwarf.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/dwarf.dip -------------------------------------------------------------------------------- /watcom/binw/edbind.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/edbind.exe -------------------------------------------------------------------------------- /watcom/binw/export.dip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/export.dip -------------------------------------------------------------------------------- /watcom/binw/fill.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/fill.dbg -------------------------------------------------------------------------------- /watcom/binw/fox.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/fox.dbg -------------------------------------------------------------------------------- /watcom/binw/hx.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/hx.trp -------------------------------------------------------------------------------- /watcom/binw/ide.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/ide.cfg -------------------------------------------------------------------------------- /watcom/binw/idedos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/idedos.cfg -------------------------------------------------------------------------------- /watcom/binw/idex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/idex.cfg -------------------------------------------------------------------------------- /watcom/binw/madx86.mad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/madx86.mad -------------------------------------------------------------------------------- /watcom/binw/mono.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/mono.dbg -------------------------------------------------------------------------------- /watcom/binw/net.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/net.trp -------------------------------------------------------------------------------- /watcom/binw/nmp.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/nmp.trp -------------------------------------------------------------------------------- /watcom/binw/nov.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/nov.trp -------------------------------------------------------------------------------- /watcom/binw/owcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/owcc.exe -------------------------------------------------------------------------------- /watcom/binw/par.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/par.trp -------------------------------------------------------------------------------- /watcom/binw/pls.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/pls.trp -------------------------------------------------------------------------------- /watcom/binw/rfx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/rfx.exe -------------------------------------------------------------------------------- /watcom/binw/rsi.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/rsi.trp -------------------------------------------------------------------------------- /watcom/binw/save.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/save.dbg -------------------------------------------------------------------------------- /watcom/binw/sb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/sb.exe -------------------------------------------------------------------------------- /watcom/binw/sc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/sc.exe -------------------------------------------------------------------------------- /watcom/binw/sd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/sd.exe -------------------------------------------------------------------------------- /watcom/binw/ser.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/ser.trp -------------------------------------------------------------------------------- /watcom/binw/slow.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/slow.dbg -------------------------------------------------------------------------------- /watcom/binw/ss.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/ss.exe -------------------------------------------------------------------------------- /watcom/binw/std.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/std.trp -------------------------------------------------------------------------------- /watcom/binw/sver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/sver.exe -------------------------------------------------------------------------------- /watcom/binw/vc.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/vc.dbg -------------------------------------------------------------------------------- /watcom/binw/vr.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/vr.dbg -------------------------------------------------------------------------------- /watcom/binw/wasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/wasm.exe -------------------------------------------------------------------------------- /watcom/binw/wcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/wcc.exe -------------------------------------------------------------------------------- /watcom/binw/wcl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/wcl.exe -------------------------------------------------------------------------------- /watcom/binw/wd.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/wd.dbg -------------------------------------------------------------------------------- /watcom/binw/wd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/wd.exe -------------------------------------------------------------------------------- /watcom/binw/wdis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/wdis.exe -------------------------------------------------------------------------------- /watcom/binw/win.trp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/win.trp -------------------------------------------------------------------------------- /watcom/binw/wlib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/wlib.exe -------------------------------------------------------------------------------- /watcom/binw/wpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/binw/wpp.exe -------------------------------------------------------------------------------- /watcom/h/_algmut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_algmut.h -------------------------------------------------------------------------------- /watcom/h/_algnmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_algnmod.h -------------------------------------------------------------------------------- /watcom/h/_algsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_algsort.h -------------------------------------------------------------------------------- /watcom/h/_comdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_comdef.h -------------------------------------------------------------------------------- /watcom/h/_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_hash.h -------------------------------------------------------------------------------- /watcom/h/_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_meta.h -------------------------------------------------------------------------------- /watcom/h/_preincl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_preincl.h -------------------------------------------------------------------------------- /watcom/h/_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_rbtree.h -------------------------------------------------------------------------------- /watcom/h/_strdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/_strdef.h -------------------------------------------------------------------------------- /watcom/h/algorith: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/algorith -------------------------------------------------------------------------------- /watcom/h/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/alloca.h -------------------------------------------------------------------------------- /watcom/h/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/array -------------------------------------------------------------------------------- /watcom/h/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/assert.h -------------------------------------------------------------------------------- /watcom/h/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/atomic -------------------------------------------------------------------------------- /watcom/h/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/bios.h -------------------------------------------------------------------------------- /watcom/h/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/bitset -------------------------------------------------------------------------------- /watcom/h/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cassert -------------------------------------------------------------------------------- /watcom/h/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cctype -------------------------------------------------------------------------------- /watcom/h/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cerrno -------------------------------------------------------------------------------- /watcom/h/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cfloat -------------------------------------------------------------------------------- /watcom/h/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/chrono -------------------------------------------------------------------------------- /watcom/h/cinttype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cinttype -------------------------------------------------------------------------------- /watcom/h/ciso646: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/ciso646 -------------------------------------------------------------------------------- /watcom/h/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/climits -------------------------------------------------------------------------------- /watcom/h/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/clocale -------------------------------------------------------------------------------- /watcom/h/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cmath -------------------------------------------------------------------------------- /watcom/h/codecvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/codecvt -------------------------------------------------------------------------------- /watcom/h/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/complex -------------------------------------------------------------------------------- /watcom/h/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/complex.h -------------------------------------------------------------------------------- /watcom/h/conditio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/conditio -------------------------------------------------------------------------------- /watcom/h/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/conio.h -------------------------------------------------------------------------------- /watcom/h/crtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/crtdbg.h -------------------------------------------------------------------------------- /watcom/h/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/csetjmp -------------------------------------------------------------------------------- /watcom/h/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/csignal -------------------------------------------------------------------------------- /watcom/h/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cstdarg -------------------------------------------------------------------------------- /watcom/h/cstdbool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cstdbool -------------------------------------------------------------------------------- /watcom/h/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cstddef -------------------------------------------------------------------------------- /watcom/h/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cstdint -------------------------------------------------------------------------------- /watcom/h/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cstdio -------------------------------------------------------------------------------- /watcom/h/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cstdlib -------------------------------------------------------------------------------- /watcom/h/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cstring -------------------------------------------------------------------------------- /watcom/h/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/ctime -------------------------------------------------------------------------------- /watcom/h/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/ctype.h -------------------------------------------------------------------------------- /watcom/h/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cwchar -------------------------------------------------------------------------------- /watcom/h/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cwctype -------------------------------------------------------------------------------- /watcom/h/cwdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/cwdll.h -------------------------------------------------------------------------------- /watcom/h/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/deque -------------------------------------------------------------------------------- /watcom/h/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/direct.h -------------------------------------------------------------------------------- /watcom/h/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/dos.h -------------------------------------------------------------------------------- /watcom/h/dosfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/dosfunc.h -------------------------------------------------------------------------------- /watcom/h/eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/eh.h -------------------------------------------------------------------------------- /watcom/h/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/env.h -------------------------------------------------------------------------------- /watcom/h/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/errno.h -------------------------------------------------------------------------------- /watcom/h/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/except.h -------------------------------------------------------------------------------- /watcom/h/exceptio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/exceptio -------------------------------------------------------------------------------- /watcom/h/exceptio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/exceptio.h -------------------------------------------------------------------------------- /watcom/h/excpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/excpt.h -------------------------------------------------------------------------------- /watcom/h/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/fcntl.h -------------------------------------------------------------------------------- /watcom/h/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/fenv.h -------------------------------------------------------------------------------- /watcom/h/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/float.h -------------------------------------------------------------------------------- /watcom/h/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/fnmatch.h -------------------------------------------------------------------------------- /watcom/h/forward_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/forward_ -------------------------------------------------------------------------------- /watcom/h/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/fstream -------------------------------------------------------------------------------- /watcom/h/fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/fstream.h -------------------------------------------------------------------------------- /watcom/h/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/function -------------------------------------------------------------------------------- /watcom/h/future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/future -------------------------------------------------------------------------------- /watcom/h/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/generic.h -------------------------------------------------------------------------------- /watcom/h/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/graph.h -------------------------------------------------------------------------------- /watcom/h/graph2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/graph2.h -------------------------------------------------------------------------------- /watcom/h/i86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/i86.h -------------------------------------------------------------------------------- /watcom/h/initiali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/initiali -------------------------------------------------------------------------------- /watcom/h/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/inttypes.h -------------------------------------------------------------------------------- /watcom/h/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/io.h -------------------------------------------------------------------------------- /watcom/h/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/iomanip -------------------------------------------------------------------------------- /watcom/h/iomanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/iomanip.h -------------------------------------------------------------------------------- /watcom/h/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/ios -------------------------------------------------------------------------------- /watcom/h/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/ios.h -------------------------------------------------------------------------------- /watcom/h/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/iosfwd -------------------------------------------------------------------------------- /watcom/h/iosfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/iosfwd.h -------------------------------------------------------------------------------- /watcom/h/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/iostream -------------------------------------------------------------------------------- /watcom/h/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/iostream.h -------------------------------------------------------------------------------- /watcom/h/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/iso646.h -------------------------------------------------------------------------------- /watcom/h/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/istream -------------------------------------------------------------------------------- /watcom/h/istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/istream.h -------------------------------------------------------------------------------- /watcom/h/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/iterator -------------------------------------------------------------------------------- /watcom/h/jctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/jctype.h -------------------------------------------------------------------------------- /watcom/h/jstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/jstring.h -------------------------------------------------------------------------------- /watcom/h/jtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/jtime.h -------------------------------------------------------------------------------- /watcom/h/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/libgen.h -------------------------------------------------------------------------------- /watcom/h/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/limits -------------------------------------------------------------------------------- /watcom/h/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/limits.h -------------------------------------------------------------------------------- /watcom/h/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/list -------------------------------------------------------------------------------- /watcom/h/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/locale -------------------------------------------------------------------------------- /watcom/h/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/locale.h -------------------------------------------------------------------------------- /watcom/h/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/malloc.h -------------------------------------------------------------------------------- /watcom/h/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/map -------------------------------------------------------------------------------- /watcom/h/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/math.h -------------------------------------------------------------------------------- /watcom/h/mbctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/mbctype.h -------------------------------------------------------------------------------- /watcom/h/mbstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/mbstring.h -------------------------------------------------------------------------------- /watcom/h/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/mem.h -------------------------------------------------------------------------------- /watcom/h/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/memory -------------------------------------------------------------------------------- /watcom/h/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/memory.h -------------------------------------------------------------------------------- /watcom/h/mmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/mmintrin.h -------------------------------------------------------------------------------- /watcom/h/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/mutex -------------------------------------------------------------------------------- /watcom/h/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/new -------------------------------------------------------------------------------- /watcom/h/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/new.h -------------------------------------------------------------------------------- /watcom/h/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/numeric -------------------------------------------------------------------------------- /watcom/h/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/ostream -------------------------------------------------------------------------------- /watcom/h/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/ostream.h -------------------------------------------------------------------------------- /watcom/h/pgchart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/pgchart.h -------------------------------------------------------------------------------- /watcom/h/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/process.h -------------------------------------------------------------------------------- /watcom/h/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/queue -------------------------------------------------------------------------------- /watcom/h/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/random -------------------------------------------------------------------------------- /watcom/h/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/ratio -------------------------------------------------------------------------------- /watcom/h/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/regex -------------------------------------------------------------------------------- /watcom/h/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/search.h -------------------------------------------------------------------------------- /watcom/h/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/set -------------------------------------------------------------------------------- /watcom/h/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/setjmp.h -------------------------------------------------------------------------------- /watcom/h/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/share.h -------------------------------------------------------------------------------- /watcom/h/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/signal.h -------------------------------------------------------------------------------- /watcom/h/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/sstream -------------------------------------------------------------------------------- /watcom/h/sstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/sstream.h -------------------------------------------------------------------------------- /watcom/h/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stack -------------------------------------------------------------------------------- /watcom/h/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stdarg.h -------------------------------------------------------------------------------- /watcom/h/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stdbool.h -------------------------------------------------------------------------------- /watcom/h/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stddef.h -------------------------------------------------------------------------------- /watcom/h/stdexcep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stdexcep -------------------------------------------------------------------------------- /watcom/h/stdexcep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stdexcep.h -------------------------------------------------------------------------------- /watcom/h/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stdint.h -------------------------------------------------------------------------------- /watcom/h/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stdio.h -------------------------------------------------------------------------------- /watcom/h/stdiobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stdiobuf.h -------------------------------------------------------------------------------- /watcom/h/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/stdlib.h -------------------------------------------------------------------------------- /watcom/h/streambu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/streambu -------------------------------------------------------------------------------- /watcom/h/streambu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/streambu.h -------------------------------------------------------------------------------- /watcom/h/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/string -------------------------------------------------------------------------------- /watcom/h/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/string.h -------------------------------------------------------------------------------- /watcom/h/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/string.hpp -------------------------------------------------------------------------------- /watcom/h/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/strings.h -------------------------------------------------------------------------------- /watcom/h/strstrea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/strstrea -------------------------------------------------------------------------------- /watcom/h/strstrea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/strstrea.h -------------------------------------------------------------------------------- /watcom/h/sys/_pc98.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/sys/_pc98.h -------------------------------------------------------------------------------- /watcom/h/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/sys/stat.h -------------------------------------------------------------------------------- /watcom/h/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/sys/timeb.h -------------------------------------------------------------------------------- /watcom/h/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/sys/types.h -------------------------------------------------------------------------------- /watcom/h/sys/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/sys/utime.h -------------------------------------------------------------------------------- /watcom/h/system_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/system_e -------------------------------------------------------------------------------- /watcom/h/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/tchar.h -------------------------------------------------------------------------------- /watcom/h/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/thread -------------------------------------------------------------------------------- /watcom/h/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/time.h -------------------------------------------------------------------------------- /watcom/h/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/tuple -------------------------------------------------------------------------------- /watcom/h/type_tra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/type_tra -------------------------------------------------------------------------------- /watcom/h/typeinde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/typeinde -------------------------------------------------------------------------------- /watcom/h/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/typeinfo -------------------------------------------------------------------------------- /watcom/h/typeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/typeinfo.h -------------------------------------------------------------------------------- /watcom/h/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/unistd.h -------------------------------------------------------------------------------- /watcom/h/unorderm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/unorderm -------------------------------------------------------------------------------- /watcom/h/unorders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/unorders -------------------------------------------------------------------------------- /watcom/h/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/utility -------------------------------------------------------------------------------- /watcom/h/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/utime.h -------------------------------------------------------------------------------- /watcom/h/valarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/valarray -------------------------------------------------------------------------------- /watcom/h/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/varargs.h -------------------------------------------------------------------------------- /watcom/h/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/vector -------------------------------------------------------------------------------- /watcom/h/wcdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcdefs.h -------------------------------------------------------------------------------- /watcom/h/wcexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcexcept.h -------------------------------------------------------------------------------- /watcom/h/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wchar.h -------------------------------------------------------------------------------- /watcom/h/wchash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wchash.h -------------------------------------------------------------------------------- /watcom/h/wchbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wchbase.h -------------------------------------------------------------------------------- /watcom/h/wchiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wchiter.h -------------------------------------------------------------------------------- /watcom/h/wclbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wclbase.h -------------------------------------------------------------------------------- /watcom/h/wclcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wclcom.h -------------------------------------------------------------------------------- /watcom/h/wclibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wclibase.h -------------------------------------------------------------------------------- /watcom/h/wclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wclist.h -------------------------------------------------------------------------------- /watcom/h/wclistit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wclistit.h -------------------------------------------------------------------------------- /watcom/h/wcqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcqueue.h -------------------------------------------------------------------------------- /watcom/h/wcsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcsbase.h -------------------------------------------------------------------------------- /watcom/h/wcsibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcsibase.h -------------------------------------------------------------------------------- /watcom/h/wcskip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcskip.h -------------------------------------------------------------------------------- /watcom/h/wcskipit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcskipit.h -------------------------------------------------------------------------------- /watcom/h/wcstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcstack.h -------------------------------------------------------------------------------- /watcom/h/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wctype.h -------------------------------------------------------------------------------- /watcom/h/wcvbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcvbase.h -------------------------------------------------------------------------------- /watcom/h/wcvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wcvector.h -------------------------------------------------------------------------------- /watcom/h/wdefwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wdefwin.h -------------------------------------------------------------------------------- /watcom/h/wsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/h/wsample.h -------------------------------------------------------------------------------- /watcom/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/license.txt -------------------------------------------------------------------------------- /watcom/owsetenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/owsetenv.bat -------------------------------------------------------------------------------- /watcom/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/readme.txt -------------------------------------------------------------------------------- /watcom/src/wstub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fragglet/dos-compilers/HEAD/watcom/src/wstub.asm --------------------------------------------------------------------------------