├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── api.c ├── api.h ├── beep.wav ├── beep1.wav ├── beep2.wav ├── beep3.wav ├── boot.fs ├── coin.wav ├── connect.wav ├── console.fs ├── death.wav ├── default.map ├── default.spr ├── detective.fs ├── detective.map ├── detective.spr ├── drmario.fs ├── drmario.map ├── drmario.spr ├── fail.wav ├── ficl ├── Makefile ├── Makefile.ansi ├── Makefile.linux ├── ReadMe.txt ├── bit.c ├── callback.c ├── compatibility.c ├── contrib │ └── xclasses │ │ ├── readme.txt │ │ └── xclasses.py ├── description-pak ├── dictionary.c ├── doc-pak │ └── doc │ │ ├── api.html │ │ ├── articles │ │ ├── ficlddj.pdf │ │ ├── jwsforml.pdf │ │ ├── oo_in_c.html │ │ └── sigplan9906.doc │ │ ├── debugger.html │ │ ├── dpans.html │ │ ├── favicon.ico │ │ ├── ficl.html │ │ ├── graphics │ │ ├── 4ring.gif │ │ ├── ficl.4.128.jpg │ │ ├── ficl.4.64.jpg │ │ ├── ficl.4.96.jpg │ │ ├── ficl_oop.jpg │ │ ├── ficl_top.jpg │ │ └── sourceforge.jpg │ │ ├── index.html │ │ ├── license.html │ │ ├── links.html │ │ ├── locals.html │ │ ├── oop.html │ │ ├── parsesteps.html │ │ ├── releases.html │ │ ├── source │ │ ├── api.ht │ │ ├── debugger.ht │ │ ├── dpans.ht │ │ ├── ficl.ht │ │ ├── generate.py │ │ ├── index.ht │ │ ├── license.ht │ │ ├── links.ht │ │ ├── locals.ht │ │ ├── oop.ht │ │ ├── parsesteps.ht │ │ ├── releases.ht │ │ └── upgrading.ht │ │ └── upgrading.html ├── doc │ ├── api.html │ ├── articles │ │ ├── ficlddj.pdf │ │ ├── jwsforml.pdf │ │ ├── oo_in_c.html │ │ └── sigplan9906.doc │ ├── debugger.html │ ├── dpans.html │ ├── favicon.ico │ ├── ficl.html │ ├── graphics │ │ ├── 4ring.gif │ │ ├── ficl.4.128.jpg │ │ ├── ficl.4.64.jpg │ │ ├── ficl.4.96.jpg │ │ ├── ficl_oop.jpg │ │ ├── ficl_top.jpg │ │ └── sourceforge.jpg │ ├── index.html │ ├── license.html │ ├── links.html │ ├── locals.html │ ├── oop.html │ ├── parsesteps.html │ ├── releases.html │ ├── source │ │ ├── api.ht │ │ ├── debugger.ht │ │ ├── dpans.ht │ │ ├── ficl.ht │ │ ├── generate.py │ │ ├── index.ht │ │ ├── license.ht │ │ ├── links.ht │ │ ├── locals.ht │ │ ├── oop.ht │ │ ├── parsesteps.ht │ │ ├── releases.ht │ │ └── upgrading.ht │ └── upgrading.html ├── double.c ├── extras.c ├── ficl.dsw ├── ficl.h ├── ficlcompatibility.h ├── ficldll.def ├── ficldll.dsp ├── ficlexe.dsp ├── ficllib.dsp ├── ficllocal.h ├── ficlplatform │ ├── alpha.h │ ├── ansi.c │ ├── ansi.h │ ├── ficlexports.txt │ ├── makedef.py │ ├── unix.c │ ├── unix.h │ ├── win32.c │ └── win32.h ├── ficltokens.h ├── fileaccess.c ├── float.c ├── hash.c ├── lzcompress.c ├── lzuncompress.c ├── main.c ├── prefix.c ├── primitives.c ├── search.c ├── softcore.c ├── softcore │ ├── classes.fr │ ├── ficl.fr │ ├── ficlclass.fr │ ├── ficllocal.fr │ ├── fileaccess.fr │ ├── forml.fr │ ├── ifbrack.fr │ ├── jhlocal.fr │ ├── make.bat │ ├── makefile │ ├── makesoftcore.c │ ├── marker.fr │ ├── oo.fr │ ├── prefix.fr │ ├── softcore.fr │ ├── string.fr │ └── win32.fr ├── stack.c ├── system.c ├── test │ ├── asm68k.4th │ ├── core.fr │ ├── fib.fr │ ├── ficltest.fr │ ├── ooptest.fr │ ├── prefix.fr │ ├── sarray.fr │ ├── testcase.fr │ ├── tester.fr │ └── vocab.fr ├── tools.c ├── utility.c ├── vm.c └── word.c ├── font.fs ├── gravity.fs ├── help.fs ├── help.md ├── house.png ├── input.fs ├── jump.wav ├── main.c ├── map-editor.fs ├── micro.fs ├── micro.map ├── micro.spr ├── paint.fs ├── palette-editor.fs ├── raycast.fs ├── raycast.map ├── raycast.spr ├── raycast1.fs ├── retro40.h ├── runner.fs ├── runner.map ├── runner.spr ├── snake.fs ├── spotlight.fs ├── spotlight.map ├── spotlight.spr ├── sprite-editor.fs ├── stomp.wav ├── tetris.fs ├── tetris.map ├── tetris.spr ├── tools.c ├── tools.h └── zap.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/README.md -------------------------------------------------------------------------------- /api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/api.c -------------------------------------------------------------------------------- /api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/api.h -------------------------------------------------------------------------------- /beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/beep.wav -------------------------------------------------------------------------------- /beep1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/beep1.wav -------------------------------------------------------------------------------- /beep2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/beep2.wav -------------------------------------------------------------------------------- /beep3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/beep3.wav -------------------------------------------------------------------------------- /boot.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/boot.fs -------------------------------------------------------------------------------- /coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/coin.wav -------------------------------------------------------------------------------- /connect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/connect.wav -------------------------------------------------------------------------------- /console.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/console.fs -------------------------------------------------------------------------------- /death.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/death.wav -------------------------------------------------------------------------------- /default.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/default.map -------------------------------------------------------------------------------- /default.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/default.spr -------------------------------------------------------------------------------- /detective.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/detective.fs -------------------------------------------------------------------------------- /detective.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/detective.map -------------------------------------------------------------------------------- /detective.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/detective.spr -------------------------------------------------------------------------------- /drmario.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/drmario.fs -------------------------------------------------------------------------------- /drmario.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/drmario.map -------------------------------------------------------------------------------- /drmario.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/drmario.spr -------------------------------------------------------------------------------- /fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/fail.wav -------------------------------------------------------------------------------- /ficl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/Makefile -------------------------------------------------------------------------------- /ficl/Makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/Makefile.ansi -------------------------------------------------------------------------------- /ficl/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/Makefile.linux -------------------------------------------------------------------------------- /ficl/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ReadMe.txt -------------------------------------------------------------------------------- /ficl/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/bit.c -------------------------------------------------------------------------------- /ficl/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/callback.c -------------------------------------------------------------------------------- /ficl/compatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/compatibility.c -------------------------------------------------------------------------------- /ficl/contrib/xclasses/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/contrib/xclasses/readme.txt -------------------------------------------------------------------------------- /ficl/contrib/xclasses/xclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/contrib/xclasses/xclasses.py -------------------------------------------------------------------------------- /ficl/description-pak: -------------------------------------------------------------------------------- 1 | Forth Inspired Command Language 2 | -------------------------------------------------------------------------------- /ficl/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/dictionary.c -------------------------------------------------------------------------------- /ficl/doc-pak/doc/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/api.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/articles/ficlddj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/articles/ficlddj.pdf -------------------------------------------------------------------------------- /ficl/doc-pak/doc/articles/jwsforml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/articles/jwsforml.pdf -------------------------------------------------------------------------------- /ficl/doc-pak/doc/articles/oo_in_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/articles/oo_in_c.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/articles/sigplan9906.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/articles/sigplan9906.doc -------------------------------------------------------------------------------- /ficl/doc-pak/doc/debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/debugger.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/dpans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/dpans.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/favicon.ico -------------------------------------------------------------------------------- /ficl/doc-pak/doc/ficl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/ficl.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/graphics/4ring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/graphics/4ring.gif -------------------------------------------------------------------------------- /ficl/doc-pak/doc/graphics/ficl.4.128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/graphics/ficl.4.128.jpg -------------------------------------------------------------------------------- /ficl/doc-pak/doc/graphics/ficl.4.64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/graphics/ficl.4.64.jpg -------------------------------------------------------------------------------- /ficl/doc-pak/doc/graphics/ficl.4.96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/graphics/ficl.4.96.jpg -------------------------------------------------------------------------------- /ficl/doc-pak/doc/graphics/ficl_oop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/graphics/ficl_oop.jpg -------------------------------------------------------------------------------- /ficl/doc-pak/doc/graphics/ficl_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/graphics/ficl_top.jpg -------------------------------------------------------------------------------- /ficl/doc-pak/doc/graphics/sourceforge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/graphics/sourceforge.jpg -------------------------------------------------------------------------------- /ficl/doc-pak/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/index.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/license.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/links.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/locals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/locals.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/oop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/oop.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/parsesteps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/parsesteps.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/releases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/releases.html -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/api.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/api.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/debugger.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/debugger.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/dpans.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/dpans.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/ficl.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/ficl.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/generate.py -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/index.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/index.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/license.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/license.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/links.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/links.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/locals.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/locals.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/oop.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/oop.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/parsesteps.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/parsesteps.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/releases.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/releases.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/source/upgrading.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/source/upgrading.ht -------------------------------------------------------------------------------- /ficl/doc-pak/doc/upgrading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc-pak/doc/upgrading.html -------------------------------------------------------------------------------- /ficl/doc/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/api.html -------------------------------------------------------------------------------- /ficl/doc/articles/ficlddj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/articles/ficlddj.pdf -------------------------------------------------------------------------------- /ficl/doc/articles/jwsforml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/articles/jwsforml.pdf -------------------------------------------------------------------------------- /ficl/doc/articles/oo_in_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/articles/oo_in_c.html -------------------------------------------------------------------------------- /ficl/doc/articles/sigplan9906.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/articles/sigplan9906.doc -------------------------------------------------------------------------------- /ficl/doc/debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/debugger.html -------------------------------------------------------------------------------- /ficl/doc/dpans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/dpans.html -------------------------------------------------------------------------------- /ficl/doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/favicon.ico -------------------------------------------------------------------------------- /ficl/doc/ficl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/ficl.html -------------------------------------------------------------------------------- /ficl/doc/graphics/4ring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/graphics/4ring.gif -------------------------------------------------------------------------------- /ficl/doc/graphics/ficl.4.128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/graphics/ficl.4.128.jpg -------------------------------------------------------------------------------- /ficl/doc/graphics/ficl.4.64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/graphics/ficl.4.64.jpg -------------------------------------------------------------------------------- /ficl/doc/graphics/ficl.4.96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/graphics/ficl.4.96.jpg -------------------------------------------------------------------------------- /ficl/doc/graphics/ficl_oop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/graphics/ficl_oop.jpg -------------------------------------------------------------------------------- /ficl/doc/graphics/ficl_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/graphics/ficl_top.jpg -------------------------------------------------------------------------------- /ficl/doc/graphics/sourceforge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/graphics/sourceforge.jpg -------------------------------------------------------------------------------- /ficl/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/index.html -------------------------------------------------------------------------------- /ficl/doc/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/license.html -------------------------------------------------------------------------------- /ficl/doc/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/links.html -------------------------------------------------------------------------------- /ficl/doc/locals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/locals.html -------------------------------------------------------------------------------- /ficl/doc/oop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/oop.html -------------------------------------------------------------------------------- /ficl/doc/parsesteps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/parsesteps.html -------------------------------------------------------------------------------- /ficl/doc/releases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/releases.html -------------------------------------------------------------------------------- /ficl/doc/source/api.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/api.ht -------------------------------------------------------------------------------- /ficl/doc/source/debugger.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/debugger.ht -------------------------------------------------------------------------------- /ficl/doc/source/dpans.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/dpans.ht -------------------------------------------------------------------------------- /ficl/doc/source/ficl.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/ficl.ht -------------------------------------------------------------------------------- /ficl/doc/source/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/generate.py -------------------------------------------------------------------------------- /ficl/doc/source/index.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/index.ht -------------------------------------------------------------------------------- /ficl/doc/source/license.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/license.ht -------------------------------------------------------------------------------- /ficl/doc/source/links.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/links.ht -------------------------------------------------------------------------------- /ficl/doc/source/locals.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/locals.ht -------------------------------------------------------------------------------- /ficl/doc/source/oop.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/oop.ht -------------------------------------------------------------------------------- /ficl/doc/source/parsesteps.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/parsesteps.ht -------------------------------------------------------------------------------- /ficl/doc/source/releases.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/releases.ht -------------------------------------------------------------------------------- /ficl/doc/source/upgrading.ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/source/upgrading.ht -------------------------------------------------------------------------------- /ficl/doc/upgrading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/doc/upgrading.html -------------------------------------------------------------------------------- /ficl/double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/double.c -------------------------------------------------------------------------------- /ficl/extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/extras.c -------------------------------------------------------------------------------- /ficl/ficl.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficl.dsw -------------------------------------------------------------------------------- /ficl/ficl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficl.h -------------------------------------------------------------------------------- /ficl/ficlcompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlcompatibility.h -------------------------------------------------------------------------------- /ficl/ficldll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficldll.def -------------------------------------------------------------------------------- /ficl/ficldll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficldll.dsp -------------------------------------------------------------------------------- /ficl/ficlexe.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlexe.dsp -------------------------------------------------------------------------------- /ficl/ficllib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficllib.dsp -------------------------------------------------------------------------------- /ficl/ficllocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficllocal.h -------------------------------------------------------------------------------- /ficl/ficlplatform/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/alpha.h -------------------------------------------------------------------------------- /ficl/ficlplatform/ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/ansi.c -------------------------------------------------------------------------------- /ficl/ficlplatform/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/ansi.h -------------------------------------------------------------------------------- /ficl/ficlplatform/ficlexports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/ficlexports.txt -------------------------------------------------------------------------------- /ficl/ficlplatform/makedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/makedef.py -------------------------------------------------------------------------------- /ficl/ficlplatform/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/unix.c -------------------------------------------------------------------------------- /ficl/ficlplatform/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/unix.h -------------------------------------------------------------------------------- /ficl/ficlplatform/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/win32.c -------------------------------------------------------------------------------- /ficl/ficlplatform/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficlplatform/win32.h -------------------------------------------------------------------------------- /ficl/ficltokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/ficltokens.h -------------------------------------------------------------------------------- /ficl/fileaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/fileaccess.c -------------------------------------------------------------------------------- /ficl/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/float.c -------------------------------------------------------------------------------- /ficl/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/hash.c -------------------------------------------------------------------------------- /ficl/lzcompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/lzcompress.c -------------------------------------------------------------------------------- /ficl/lzuncompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/lzuncompress.c -------------------------------------------------------------------------------- /ficl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/main.c -------------------------------------------------------------------------------- /ficl/prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/prefix.c -------------------------------------------------------------------------------- /ficl/primitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/primitives.c -------------------------------------------------------------------------------- /ficl/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/search.c -------------------------------------------------------------------------------- /ficl/softcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore.c -------------------------------------------------------------------------------- /ficl/softcore/classes.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/classes.fr -------------------------------------------------------------------------------- /ficl/softcore/ficl.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/ficl.fr -------------------------------------------------------------------------------- /ficl/softcore/ficlclass.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/ficlclass.fr -------------------------------------------------------------------------------- /ficl/softcore/ficllocal.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/ficllocal.fr -------------------------------------------------------------------------------- /ficl/softcore/fileaccess.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/fileaccess.fr -------------------------------------------------------------------------------- /ficl/softcore/forml.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/forml.fr -------------------------------------------------------------------------------- /ficl/softcore/ifbrack.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/ifbrack.fr -------------------------------------------------------------------------------- /ficl/softcore/jhlocal.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/jhlocal.fr -------------------------------------------------------------------------------- /ficl/softcore/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/make.bat -------------------------------------------------------------------------------- /ficl/softcore/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/makefile -------------------------------------------------------------------------------- /ficl/softcore/makesoftcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/makesoftcore.c -------------------------------------------------------------------------------- /ficl/softcore/marker.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/marker.fr -------------------------------------------------------------------------------- /ficl/softcore/oo.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/oo.fr -------------------------------------------------------------------------------- /ficl/softcore/prefix.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/prefix.fr -------------------------------------------------------------------------------- /ficl/softcore/softcore.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/softcore.fr -------------------------------------------------------------------------------- /ficl/softcore/string.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/string.fr -------------------------------------------------------------------------------- /ficl/softcore/win32.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/softcore/win32.fr -------------------------------------------------------------------------------- /ficl/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/stack.c -------------------------------------------------------------------------------- /ficl/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/system.c -------------------------------------------------------------------------------- /ficl/test/asm68k.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/asm68k.4th -------------------------------------------------------------------------------- /ficl/test/core.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/core.fr -------------------------------------------------------------------------------- /ficl/test/fib.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/fib.fr -------------------------------------------------------------------------------- /ficl/test/ficltest.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/ficltest.fr -------------------------------------------------------------------------------- /ficl/test/ooptest.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/ooptest.fr -------------------------------------------------------------------------------- /ficl/test/prefix.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/prefix.fr -------------------------------------------------------------------------------- /ficl/test/sarray.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/sarray.fr -------------------------------------------------------------------------------- /ficl/test/testcase.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/testcase.fr -------------------------------------------------------------------------------- /ficl/test/tester.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/tester.fr -------------------------------------------------------------------------------- /ficl/test/vocab.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/test/vocab.fr -------------------------------------------------------------------------------- /ficl/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/tools.c -------------------------------------------------------------------------------- /ficl/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/utility.c -------------------------------------------------------------------------------- /ficl/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/vm.c -------------------------------------------------------------------------------- /ficl/word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/ficl/word.c -------------------------------------------------------------------------------- /font.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/font.fs -------------------------------------------------------------------------------- /gravity.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/gravity.fs -------------------------------------------------------------------------------- /help.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/help.fs -------------------------------------------------------------------------------- /help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/help.md -------------------------------------------------------------------------------- /house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/house.png -------------------------------------------------------------------------------- /input.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/input.fs -------------------------------------------------------------------------------- /jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/jump.wav -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/main.c -------------------------------------------------------------------------------- /map-editor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/map-editor.fs -------------------------------------------------------------------------------- /micro.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/micro.fs -------------------------------------------------------------------------------- /micro.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/micro.map -------------------------------------------------------------------------------- /micro.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/micro.spr -------------------------------------------------------------------------------- /paint.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/paint.fs -------------------------------------------------------------------------------- /palette-editor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/palette-editor.fs -------------------------------------------------------------------------------- /raycast.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/raycast.fs -------------------------------------------------------------------------------- /raycast.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/raycast.map -------------------------------------------------------------------------------- /raycast.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/raycast.spr -------------------------------------------------------------------------------- /raycast1.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/raycast1.fs -------------------------------------------------------------------------------- /retro40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/retro40.h -------------------------------------------------------------------------------- /runner.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/runner.fs -------------------------------------------------------------------------------- /runner.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/runner.map -------------------------------------------------------------------------------- /runner.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/runner.spr -------------------------------------------------------------------------------- /snake.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/snake.fs -------------------------------------------------------------------------------- /spotlight.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/spotlight.fs -------------------------------------------------------------------------------- /spotlight.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/spotlight.map -------------------------------------------------------------------------------- /spotlight.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/spotlight.spr -------------------------------------------------------------------------------- /sprite-editor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/sprite-editor.fs -------------------------------------------------------------------------------- /stomp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/stomp.wav -------------------------------------------------------------------------------- /tetris.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/tetris.fs -------------------------------------------------------------------------------- /tetris.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/tetris.map -------------------------------------------------------------------------------- /tetris.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/tetris.spr -------------------------------------------------------------------------------- /tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/tools.c -------------------------------------------------------------------------------- /tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/tools.h -------------------------------------------------------------------------------- /zap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydeejay/retro-40/HEAD/zap.wav --------------------------------------------------------------------------------