├── README.md ├── SUMMARY.md ├── afkit.f ├── ans ├── depend.f ├── ffl │ ├── ffl │ │ ├── a32.fs │ │ ├── acn.fs │ │ ├── act.fs │ │ ├── arg.fs │ │ ├── b64.fs │ │ ├── bar.fs │ │ ├── bci.fs │ │ ├── bcn.fs │ │ ├── bct.fs │ │ ├── bis.fs │ │ ├── bni.fs │ │ ├── bnn.fs │ │ ├── bnt.fs │ │ ├── car.fs │ │ ├── cbf.fs │ │ ├── chr.fs │ │ ├── chs.fs │ │ ├── config.fs │ │ ├── cpx.fs │ │ ├── crc.fs │ │ ├── dci.fs │ │ ├── dcl.fs │ │ ├── dcn.fs │ │ ├── dni.fs │ │ ├── dnl.fs │ │ ├── dnn.fs │ │ ├── dom.fs │ │ ├── dos.fs │ │ ├── dti.fs │ │ ├── dtm.fs │ │ ├── enm.fs │ │ ├── est.fs │ │ ├── ffl.api │ │ ├── ffl.fs │ │ ├── frc.fs │ │ ├── fsm.fs │ │ ├── fst.fs │ │ ├── ftr.fs │ │ ├── fwt.fs │ │ ├── gmo.fs │ │ ├── gsv.fs │ │ ├── gzf.fs │ │ ├── gzi.fs │ │ ├── hci.fs │ │ ├── hcn.fs │ │ ├── hct.fs │ │ ├── hni.fs │ │ ├── hnn.fs │ │ ├── hnt.fs │ │ ├── lbf.fs │ │ ├── log.fs │ │ ├── make.fs │ │ ├── md5.fs │ │ ├── msc.fs │ │ ├── nci.fs │ │ ├── ncn.fs │ │ ├── nct.fs │ │ ├── nfe.fs │ │ ├── nfs.fs │ │ ├── nni.fs │ │ ├── nnn.fs │ │ ├── nnt.fs │ │ ├── rdg.fs │ │ ├── rgx.fs │ │ ├── rng.fs │ │ ├── scf.fs │ │ ├── sci.fs │ │ ├── scl.fs │ │ ├── scn.fs │ │ ├── sh1.fs │ │ ├── sh2.fs │ │ ├── sni.fs │ │ ├── snl.fs │ │ ├── snn.fs │ │ ├── spf.fs │ │ ├── stc.fs │ │ ├── str.fs │ │ ├── stt.fs │ │ ├── tis.fs │ │ ├── tmr.fs │ │ ├── tos.fs │ │ ├── trm.fs │ │ ├── tst.fs │ │ ├── xis.fs │ │ ├── xos.fs │ │ └── zif.fs │ ├── sflinux │ │ ├── config.f │ │ └── ffl.f │ ├── sfwin32 │ │ ├── config.f │ │ └── ffl.f │ └── vfx │ │ └── config.f ├── files.f ├── param-enclosures.f ├── roger.f ├── strops.f └── version.f ├── audio-allegro.f ├── dep ├── allegro5 │ ├── 5.2.3 │ │ ├── allegro_monolith-5.2.dll │ │ ├── allegro_monolith-debug-5.2.dll │ │ ├── libFLAC++-6.dll │ │ ├── libFLAC-8.dll │ │ ├── libenet.dll │ │ ├── libfreetype.dll │ │ ├── libgcc_s_dw2-1.dll │ │ ├── libjpeg-62.dll │ │ ├── libogg-0.dll │ │ ├── libphysfs.dll │ │ ├── libpng16.dll │ │ ├── libstdc++-6.dll │ │ ├── libtheora-0.dll │ │ ├── libtheoradec-1.dll │ │ ├── libtheoraenc-1.dll │ │ ├── libturbojpeg.dll │ │ ├── libvorbis-0.dll │ │ ├── libvorbisenc-2.dll │ │ ├── libvorbisfile-3.dll │ │ ├── libwinpthread-1.dll │ │ └── libzlib.dll │ ├── allegro-5.2.x.f │ ├── allegro5_01_general.f │ ├── allegro5_02_events.f │ ├── allegro5_03_keys.f │ ├── allegro5_04_audio.f │ ├── allegro5_05_graphics.f │ ├── allegro5_06_fs.f │ └── allegro5_07_misc.f ├── wincon.dll └── zlib │ ├── libzlib.dll │ └── zlib.f ├── lib └── xml.f ├── license.md ├── piston.f ├── plat ├── gfwin32.f ├── sf.f ├── sf │ └── fixedp.f ├── sflinux.f ├── sfwin32.f └── win │ ├── clipb.f │ └── fpext.f ├── platforms.f └── test ├── asynctest.f ├── data ├── BGM006.it ├── BGM008.it ├── asdf.ogg ├── bgm001.xm ├── jump.ogg ├── link.wav ├── mountain.xm └── mus_lab.ogg └── threadtest.f /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /afkit.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/afkit.f -------------------------------------------------------------------------------- /ans/depend.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/depend.f -------------------------------------------------------------------------------- /ans/ffl/ffl/a32.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/a32.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/acn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/acn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/act.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/act.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/arg.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/arg.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/b64.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/b64.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/bar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/bar.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/bci.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/bci.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/bcn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/bcn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/bct.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/bct.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/bis.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/bis.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/bni.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/bni.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/bnn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/bnn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/bnt.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/bnt.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/car.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/car.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/cbf.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/cbf.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/chr.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/chr.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/chs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/chs.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/config.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/cpx.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/cpx.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/crc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/crc.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dci.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dci.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dcl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dcl.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dcn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dcn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dni.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dni.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dnl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dnl.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dnn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dnn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dom.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dom.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dos.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dos.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dti.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dti.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/dtm.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/dtm.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/enm.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/enm.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/est.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/est.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/ffl.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/ffl.api -------------------------------------------------------------------------------- /ans/ffl/ffl/ffl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/ffl.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/frc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/frc.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/fsm.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/fsm.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/fst.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/fst.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/ftr.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/ftr.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/fwt.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/fwt.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/gmo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/gmo.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/gsv.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/gsv.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/gzf.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/gzf.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/gzi.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/gzi.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/hci.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/hci.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/hcn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/hcn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/hct.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/hct.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/hni.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/hni.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/hnn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/hnn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/hnt.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/hnt.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/lbf.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/lbf.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/log.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/log.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/make.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/make.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/md5.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/md5.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/msc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/msc.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/nci.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/nci.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/ncn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/ncn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/nct.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/nct.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/nfe.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/nfe.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/nfs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/nfs.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/nni.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/nni.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/nnn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/nnn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/nnt.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/nnt.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/rdg.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/rdg.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/rgx.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/rgx.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/rng.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/rng.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/scf.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/scf.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/sci.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/sci.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/scl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/scl.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/scn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/scn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/sh1.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/sh1.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/sh2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/sh2.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/sni.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/sni.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/snl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/snl.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/snn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/snn.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/spf.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/spf.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/stc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/stc.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/str.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/str.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/stt.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/stt.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/tis.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/tis.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/tmr.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/tmr.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/tos.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/tos.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/trm.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/trm.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/tst.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/tst.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/xis.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/xis.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/xos.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/xos.fs -------------------------------------------------------------------------------- /ans/ffl/ffl/zif.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/ffl/zif.fs -------------------------------------------------------------------------------- /ans/ffl/sflinux/config.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/sflinux/config.f -------------------------------------------------------------------------------- /ans/ffl/sflinux/ffl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/sflinux/ffl.f -------------------------------------------------------------------------------- /ans/ffl/sfwin32/config.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/sfwin32/config.f -------------------------------------------------------------------------------- /ans/ffl/sfwin32/ffl.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/sfwin32/ffl.f -------------------------------------------------------------------------------- /ans/ffl/vfx/config.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/ffl/vfx/config.f -------------------------------------------------------------------------------- /ans/files.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/files.f -------------------------------------------------------------------------------- /ans/param-enclosures.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/param-enclosures.f -------------------------------------------------------------------------------- /ans/roger.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/roger.f -------------------------------------------------------------------------------- /ans/strops.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/strops.f -------------------------------------------------------------------------------- /ans/version.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/ans/version.f -------------------------------------------------------------------------------- /audio-allegro.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/audio-allegro.f -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/allegro_monolith-5.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/allegro_monolith-5.2.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/allegro_monolith-debug-5.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/allegro_monolith-debug-5.2.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libFLAC++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libFLAC++-6.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libFLAC-8.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libenet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libenet.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libfreetype.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libfreetype.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libjpeg-62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libjpeg-62.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libogg-0.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libphysfs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libphysfs.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libpng16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libpng16.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libstdc++-6.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libtheora-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libtheora-0.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libtheoradec-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libtheoradec-1.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libtheoraenc-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libtheoraenc-1.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libturbojpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libturbojpeg.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libvorbis-0.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libvorbisenc-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libvorbisenc-2.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libvorbisfile-3.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libwinpthread-1.dll -------------------------------------------------------------------------------- /dep/allegro5/5.2.3/libzlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/5.2.3/libzlib.dll -------------------------------------------------------------------------------- /dep/allegro5/allegro-5.2.x.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/allegro-5.2.x.f -------------------------------------------------------------------------------- /dep/allegro5/allegro5_01_general.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/allegro5_01_general.f -------------------------------------------------------------------------------- /dep/allegro5/allegro5_02_events.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/allegro5_02_events.f -------------------------------------------------------------------------------- /dep/allegro5/allegro5_03_keys.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/allegro5_03_keys.f -------------------------------------------------------------------------------- /dep/allegro5/allegro5_04_audio.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/allegro5_04_audio.f -------------------------------------------------------------------------------- /dep/allegro5/allegro5_05_graphics.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/allegro5_05_graphics.f -------------------------------------------------------------------------------- /dep/allegro5/allegro5_06_fs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/allegro5_06_fs.f -------------------------------------------------------------------------------- /dep/allegro5/allegro5_07_misc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/allegro5/allegro5_07_misc.f -------------------------------------------------------------------------------- /dep/wincon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/wincon.dll -------------------------------------------------------------------------------- /dep/zlib/libzlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/zlib/libzlib.dll -------------------------------------------------------------------------------- /dep/zlib/zlib.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/dep/zlib/zlib.f -------------------------------------------------------------------------------- /lib/xml.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/lib/xml.f -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/license.md -------------------------------------------------------------------------------- /piston.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/piston.f -------------------------------------------------------------------------------- /plat/gfwin32.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/plat/gfwin32.f -------------------------------------------------------------------------------- /plat/sf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/plat/sf.f -------------------------------------------------------------------------------- /plat/sf/fixedp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/plat/sf/fixedp.f -------------------------------------------------------------------------------- /plat/sflinux.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/plat/sflinux.f -------------------------------------------------------------------------------- /plat/sfwin32.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/plat/sfwin32.f -------------------------------------------------------------------------------- /plat/win/clipb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/plat/win/clipb.f -------------------------------------------------------------------------------- /plat/win/fpext.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/plat/win/fpext.f -------------------------------------------------------------------------------- /platforms.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/platforms.f -------------------------------------------------------------------------------- /test/asynctest.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/asynctest.f -------------------------------------------------------------------------------- /test/data/BGM006.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/data/BGM006.it -------------------------------------------------------------------------------- /test/data/BGM008.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/data/BGM008.it -------------------------------------------------------------------------------- /test/data/asdf.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/data/asdf.ogg -------------------------------------------------------------------------------- /test/data/bgm001.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/data/bgm001.xm -------------------------------------------------------------------------------- /test/data/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/data/jump.ogg -------------------------------------------------------------------------------- /test/data/link.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/data/link.wav -------------------------------------------------------------------------------- /test/data/mountain.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/data/mountain.xm -------------------------------------------------------------------------------- /test/data/mus_lab.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/data/mus_lab.ogg -------------------------------------------------------------------------------- /test/threadtest.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenengine/afkit/HEAD/test/threadtest.f --------------------------------------------------------------------------------