├── .gitattributes ├── .gitignore ├── COPYING ├── Makefile ├── Makefile.i686 ├── Makefile.x86_64 ├── README.md ├── Tcmake.bat ├── ansiterm.mf ├── bios ├── MFPTOKEN.H ├── bios.mf ├── mf.c ├── mf_bios.c ├── mfpfunc.c └── mfpnames.c ├── block.mf ├── decomp.c ├── doskey.mf ├── double.mf ├── examples ├── black.blk ├── bubble.tst ├── factorl.mf ├── hanoi.mf ├── horst.mf ├── magic.mf ├── matmult.mf ├── md5.f ├── mf.bat ├── perm.mf ├── savage.f ├── sha1.f ├── sieve.mf ├── theory.4th └── treesort.mf ├── except.mf ├── extend.mf ├── facility.mf ├── file.mf ├── float.mf ├── fsl ├── MF.BAT ├── adaptint.mf ├── adpt_g3.mf ├── aitken.mf ├── amoeba.mf ├── backsub.mf ├── big.mf ├── cmath.mf ├── complex.mf ├── complex2.mf ├── crc.mf ├── cube_rt.mf ├── cubic.mf ├── dates.mf ├── dets.mf ├── dfourier.mf ├── divdiffs.mf ├── dynmem.mf ├── elip.mf ├── elip12.mf ├── expint.mf ├── factorl.mf ├── ffourier.mf ├── find.mf ├── fsl-util.mf ├── gamma.mf ├── gauleg.mf ├── gauss.mf ├── gaussj.mf ├── hartley.mf ├── hartley.tst ├── hermite.mf ├── hilbert.mf ├── horner.mf ├── integral.mf ├── invm.mf ├── isaac.mf ├── kande.mf ├── lagrange.mf ├── logistic.mf ├── lufact.mf ├── newton.mf ├── pcylfun.mf ├── polrat.mf ├── polys.mf ├── r250.mf ├── ran4.mf ├── randdist.mf ├── regfalsi.mf ├── runge4.mf ├── seriespw.mf ├── shanks.mf ├── shellsrt.mf ├── sph_bes.mf ├── structs.mf ├── sunday.mf ├── svd.mf ├── telscop1.mf ├── telscop2.mf ├── trap_int.mf ├── vulgar.mf └── walsh.mf ├── kernel.mfc ├── linuxkey.mf ├── locals.mf ├── memory.mf ├── metacomp.c ├── mfcomp.h ├── mfdos.zip ├── mfpfunc.c ├── mfpnames.c ├── mfptoken.h ├── miniforth.c ├── search.mf ├── string.mf ├── tconv.mf ├── tests ├── blktest.blk ├── core.fr ├── double.fr ├── fltest.fr ├── mf.bat ├── postpone.fs ├── ran.mf ├── reln.mf ├── struct.mf ├── tester.fr ├── tlocals.mf ├── upper.mf ├── values.mf └── winapi.mf ├── tools.mf └── winterm.mf /.gitattributes: -------------------------------------------------------------------------------- 1 | *.mf linguist-language=Forth 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/Makefile.i686 -------------------------------------------------------------------------------- /Makefile.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/Makefile.x86_64 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/README.md -------------------------------------------------------------------------------- /Tcmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/Tcmake.bat -------------------------------------------------------------------------------- /ansiterm.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/ansiterm.mf -------------------------------------------------------------------------------- /bios/MFPTOKEN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/bios/MFPTOKEN.H -------------------------------------------------------------------------------- /bios/bios.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/bios/bios.mf -------------------------------------------------------------------------------- /bios/mf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/bios/mf.c -------------------------------------------------------------------------------- /bios/mf_bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/bios/mf_bios.c -------------------------------------------------------------------------------- /bios/mfpfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/bios/mfpfunc.c -------------------------------------------------------------------------------- /bios/mfpnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/bios/mfpnames.c -------------------------------------------------------------------------------- /block.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/block.mf -------------------------------------------------------------------------------- /decomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/decomp.c -------------------------------------------------------------------------------- /doskey.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/doskey.mf -------------------------------------------------------------------------------- /double.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/double.mf -------------------------------------------------------------------------------- /examples/black.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/black.blk -------------------------------------------------------------------------------- /examples/bubble.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/bubble.tst -------------------------------------------------------------------------------- /examples/factorl.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/factorl.mf -------------------------------------------------------------------------------- /examples/hanoi.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/hanoi.mf -------------------------------------------------------------------------------- /examples/horst.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/horst.mf -------------------------------------------------------------------------------- /examples/magic.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/magic.mf -------------------------------------------------------------------------------- /examples/matmult.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/matmult.mf -------------------------------------------------------------------------------- /examples/md5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/md5.f -------------------------------------------------------------------------------- /examples/mf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/mf.bat -------------------------------------------------------------------------------- /examples/perm.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/perm.mf -------------------------------------------------------------------------------- /examples/savage.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/savage.f -------------------------------------------------------------------------------- /examples/sha1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/sha1.f -------------------------------------------------------------------------------- /examples/sieve.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/sieve.mf -------------------------------------------------------------------------------- /examples/theory.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/theory.4th -------------------------------------------------------------------------------- /examples/treesort.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/examples/treesort.mf -------------------------------------------------------------------------------- /except.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/except.mf -------------------------------------------------------------------------------- /extend.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/extend.mf -------------------------------------------------------------------------------- /facility.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/facility.mf -------------------------------------------------------------------------------- /file.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/file.mf -------------------------------------------------------------------------------- /float.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/float.mf -------------------------------------------------------------------------------- /fsl/MF.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/MF.BAT -------------------------------------------------------------------------------- /fsl/adaptint.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/adaptint.mf -------------------------------------------------------------------------------- /fsl/adpt_g3.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/adpt_g3.mf -------------------------------------------------------------------------------- /fsl/aitken.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/aitken.mf -------------------------------------------------------------------------------- /fsl/amoeba.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/amoeba.mf -------------------------------------------------------------------------------- /fsl/backsub.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/backsub.mf -------------------------------------------------------------------------------- /fsl/big.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/big.mf -------------------------------------------------------------------------------- /fsl/cmath.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/cmath.mf -------------------------------------------------------------------------------- /fsl/complex.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/complex.mf -------------------------------------------------------------------------------- /fsl/complex2.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/complex2.mf -------------------------------------------------------------------------------- /fsl/crc.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/crc.mf -------------------------------------------------------------------------------- /fsl/cube_rt.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/cube_rt.mf -------------------------------------------------------------------------------- /fsl/cubic.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/cubic.mf -------------------------------------------------------------------------------- /fsl/dates.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/dates.mf -------------------------------------------------------------------------------- /fsl/dets.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/dets.mf -------------------------------------------------------------------------------- /fsl/dfourier.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/dfourier.mf -------------------------------------------------------------------------------- /fsl/divdiffs.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/divdiffs.mf -------------------------------------------------------------------------------- /fsl/dynmem.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/dynmem.mf -------------------------------------------------------------------------------- /fsl/elip.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/elip.mf -------------------------------------------------------------------------------- /fsl/elip12.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/elip12.mf -------------------------------------------------------------------------------- /fsl/expint.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/expint.mf -------------------------------------------------------------------------------- /fsl/factorl.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/factorl.mf -------------------------------------------------------------------------------- /fsl/ffourier.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/ffourier.mf -------------------------------------------------------------------------------- /fsl/find.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/find.mf -------------------------------------------------------------------------------- /fsl/fsl-util.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/fsl-util.mf -------------------------------------------------------------------------------- /fsl/gamma.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/gamma.mf -------------------------------------------------------------------------------- /fsl/gauleg.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/gauleg.mf -------------------------------------------------------------------------------- /fsl/gauss.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/gauss.mf -------------------------------------------------------------------------------- /fsl/gaussj.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/gaussj.mf -------------------------------------------------------------------------------- /fsl/hartley.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/hartley.mf -------------------------------------------------------------------------------- /fsl/hartley.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/hartley.tst -------------------------------------------------------------------------------- /fsl/hermite.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/hermite.mf -------------------------------------------------------------------------------- /fsl/hilbert.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/hilbert.mf -------------------------------------------------------------------------------- /fsl/horner.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/horner.mf -------------------------------------------------------------------------------- /fsl/integral.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/integral.mf -------------------------------------------------------------------------------- /fsl/invm.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/invm.mf -------------------------------------------------------------------------------- /fsl/isaac.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/isaac.mf -------------------------------------------------------------------------------- /fsl/kande.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/kande.mf -------------------------------------------------------------------------------- /fsl/lagrange.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/lagrange.mf -------------------------------------------------------------------------------- /fsl/logistic.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/logistic.mf -------------------------------------------------------------------------------- /fsl/lufact.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/lufact.mf -------------------------------------------------------------------------------- /fsl/newton.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/newton.mf -------------------------------------------------------------------------------- /fsl/pcylfun.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/pcylfun.mf -------------------------------------------------------------------------------- /fsl/polrat.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/polrat.mf -------------------------------------------------------------------------------- /fsl/polys.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/polys.mf -------------------------------------------------------------------------------- /fsl/r250.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/r250.mf -------------------------------------------------------------------------------- /fsl/ran4.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/ran4.mf -------------------------------------------------------------------------------- /fsl/randdist.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/randdist.mf -------------------------------------------------------------------------------- /fsl/regfalsi.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/regfalsi.mf -------------------------------------------------------------------------------- /fsl/runge4.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/runge4.mf -------------------------------------------------------------------------------- /fsl/seriespw.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/seriespw.mf -------------------------------------------------------------------------------- /fsl/shanks.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/shanks.mf -------------------------------------------------------------------------------- /fsl/shellsrt.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/shellsrt.mf -------------------------------------------------------------------------------- /fsl/sph_bes.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/sph_bes.mf -------------------------------------------------------------------------------- /fsl/structs.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/structs.mf -------------------------------------------------------------------------------- /fsl/sunday.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/sunday.mf -------------------------------------------------------------------------------- /fsl/svd.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/svd.mf -------------------------------------------------------------------------------- /fsl/telscop1.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/telscop1.mf -------------------------------------------------------------------------------- /fsl/telscop2.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/telscop2.mf -------------------------------------------------------------------------------- /fsl/trap_int.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/trap_int.mf -------------------------------------------------------------------------------- /fsl/vulgar.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/vulgar.mf -------------------------------------------------------------------------------- /fsl/walsh.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/fsl/walsh.mf -------------------------------------------------------------------------------- /kernel.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/kernel.mfc -------------------------------------------------------------------------------- /linuxkey.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/linuxkey.mf -------------------------------------------------------------------------------- /locals.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/locals.mf -------------------------------------------------------------------------------- /memory.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/memory.mf -------------------------------------------------------------------------------- /metacomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/metacomp.c -------------------------------------------------------------------------------- /mfcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/mfcomp.h -------------------------------------------------------------------------------- /mfdos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/mfdos.zip -------------------------------------------------------------------------------- /mfpfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/mfpfunc.c -------------------------------------------------------------------------------- /mfpnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/mfpnames.c -------------------------------------------------------------------------------- /mfptoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/mfptoken.h -------------------------------------------------------------------------------- /miniforth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/miniforth.c -------------------------------------------------------------------------------- /search.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/search.mf -------------------------------------------------------------------------------- /string.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/string.mf -------------------------------------------------------------------------------- /tconv.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tconv.mf -------------------------------------------------------------------------------- /tests/blktest.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/blktest.blk -------------------------------------------------------------------------------- /tests/core.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/core.fr -------------------------------------------------------------------------------- /tests/double.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/double.fr -------------------------------------------------------------------------------- /tests/fltest.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/fltest.fr -------------------------------------------------------------------------------- /tests/mf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/mf.bat -------------------------------------------------------------------------------- /tests/postpone.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/postpone.fs -------------------------------------------------------------------------------- /tests/ran.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/ran.mf -------------------------------------------------------------------------------- /tests/reln.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/reln.mf -------------------------------------------------------------------------------- /tests/struct.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/struct.mf -------------------------------------------------------------------------------- /tests/tester.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/tester.fr -------------------------------------------------------------------------------- /tests/tlocals.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/tlocals.mf -------------------------------------------------------------------------------- /tests/upper.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/upper.mf -------------------------------------------------------------------------------- /tests/values.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/values.mf -------------------------------------------------------------------------------- /tests/winapi.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tests/winapi.mf -------------------------------------------------------------------------------- /tools.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/tools.mf -------------------------------------------------------------------------------- /winterm.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtholt/minforth/HEAD/winterm.mf --------------------------------------------------------------------------------