├── .gitignore ├── 4thCosy.lnk ├── CREDITS ├── CoSy ├── AltStackOps.f ├── CSauxstack.f ├── CoSy.bk ├── CoSy.csy ├── CoSy.f ├── Derived.f ├── Fact ├── FloatsPlus.f ├── ForthDay15.csy ├── Furniture.f ├── Head#change.f ├── IntroHelp.txt ├── Job.f ├── K_verbs.csv ├── LanguageLinks.txt ├── ParameterPushing.f ├── ReadMe.txt ├── RecurInterp.f ├── SaveRestore.f ├── SaveRestoreNew.f ├── ToDo.txt ├── Tui.f ├── Util.f ├── help.txt ├── iup ├── math.f ├── res.txt ├── state.txt ├── text.txt ├── util.f ├── y2015.txt ├── y2016.txt ├── y2017.txt └── y2018.txt ├── CoSy@.bat ├── CoSyCube50.ico ├── CoSyWelcome_ReadFirst.html ├── CoSyWelcome_ReadFirst.md ├── CoSyWelcome_ReadFirst160806.html ├── Cosy.bat ├── FASM.EXE ├── LICENSE ├── Makefile ├── Physics └── SB.f ├── README.md ├── RevaREADME ├── THANKS! ├── bench ├── bench-c.c ├── bench-common.f ├── bench-fp.f ├── bench-gf.f ├── bench-if.f ├── bench-sf.f ├── bench-vx.f ├── bench-w32f.f ├── bench.f ├── makefile ├── revatemporaryfile.1075$ ├── revatemporaryfile.508$ ├── revatemporaryfile.690$ └── revatemporaryfile.725$ ├── bin ├── agar.dll ├── bench ├── bench.bat ├── build ├── cd.dll ├── cdiup.dll ├── checkhelp.f ├── dist.f ├── firstrun.f ├── freetype.dll ├── genhelp.f ├── glut32.dll ├── graphapp.dll ├── help.db ├── imath.dll ├── imath.txt ├── inline.f ├── install.f ├── iup.dll ├── iupcontrols.dll ├── iupgl.dll ├── iupim.dll ├── iupimglib.dll ├── libexpat.dll ├── libgobject-2.0-0.dll ├── libgpg-error-0.dll ├── libgpgme-11.dll ├── libiconv2.dll ├── libimath.so ├── libmySQL.dll ├── libpng13.dll ├── libs.f ├── pcre3.dll ├── pdcurses.dll ├── pthread.dll ├── reva.exe ├── reva.x ├── revacore ├── rss_process.dll ├── sdl.dll ├── sqlite3.dll ├── sqlite3.exe ├── test.f ├── testlib.f ├── tests.f └── zlib1.dll ├── contrib ├── chess4reva.f ├── debug.f ├── float.txt ├── fpout18.f ├── ft-reva.vim ├── memory.fth ├── reva.vim ├── reva2.ico ├── reva3.ico ├── rss_process.zip ├── sun.txt ├── sun.zip └── winlife.f ├── downloads ├── 2015-January.txt.gz └── loan.4th ├── examples ├── 3n1.f ├── alg-test.f ├── arm │ ├── armapp.f │ ├── armlife.f │ └── readme.txt ├── asm.f ├── beer.f ├── bf.f ├── bf1.f ├── bf2.f ├── block-editor.f ├── brownian.f ├── calendar.f ├── catch.f ├── cgi.f ├── codesize.f ├── datediff.f ├── dhttpd.f ├── dllexplorer.f ├── dump.f ├── ed.4th ├── ekeys.f ├── fib.f ├── fib2.f ├── fizzbuzz.f ├── galife.f ├── gl │ ├── gl-scene.f │ ├── gl-shading.f │ └── gl-twod.f ├── grep.f ├── gtk.f ├── gtk.f~ ├── hanoi.f ├── hello │ ├── hello.f │ ├── hello2.f │ ├── hello3.f │ ├── hello4.f │ ├── hello5.f │ ├── hello6.f │ └── hello7.f ├── http.f ├── ignorecase.f ├── iskey.f ├── iup │ ├── binary-clock.f │ ├── brownian.f │ ├── callback-test.f │ ├── cd-test.f │ ├── db-test.f │ ├── file-dlg.f │ ├── frame-test.f │ ├── gl-test.f │ ├── gui-test.f │ ├── gui-test2.f │ └── image-convert.f ├── makeexe.f ├── map.f ├── md5.f ├── meteor.f ├── meteor2.f ├── mevarchim.f ├── notready │ ├── caravan.f │ ├── meteor.f │ ├── meteor2.f │ ├── normalize.f │ ├── rambam.f │ ├── upsies-downsies.f │ └── zemanim.f ├── onstart.f ├── pi │ ├── pi.c │ ├── pi.f │ ├── pi2.f │ ├── pispigot.f │ └── pispigot2.f ├── process.f ├── quoth.f ├── rambam.f ├── revafind.exe ├── revafind.f ├── robotron.f ├── see2.f ├── sieve.f ├── smtp.f ├── sockets.f ├── special.f ├── sqlite.f ├── sudoku.f ├── task.f ├── test.db ├── thehouse.f ├── threads.f ├── tictactoe.f ├── upsies-downsies.f ├── utf8.f ├── winapp.f ├── winhello.f ├── winlife.f ├── words.f ├── xml.f ├── xmlrpc.f └── zipdb.f ├── install.bat ├── install.sh ├── lib ├── alg │ ├── array │ ├── bubblesort │ ├── common │ ├── common~ │ ├── enum │ ├── hsort │ ├── htable │ ├── insertsort │ ├── list │ ├── quicksort │ ├── sort-common │ ├── stack │ └── structs ├── ansi ├── app │ └── console ├── arm │ ├── armasm │ ├── armimg.asm │ ├── armimg.exe │ ├── armtc │ └── armwinhdr ├── asm ├── assembler ├── callbacks ├── choices ├── crypt │ ├── gpg │ ├── md5 │ └── rc4 ├── date │ ├── calendar │ ├── church │ ├── hebrew │ ├── holidays │ ├── islam │ ├── iso │ ├── julian │ └── sedra ├── db │ ├── common │ ├── mysql │ ├── sql │ └── sqlite ├── debugger ├── helper ├── math │ ├── apnea │ ├── big │ ├── doubles │ ├── floats │ └── mod ├── net │ ├── cgi │ ├── ftp │ ├── http │ ├── mime │ ├── sockets │ ├── xml │ └── xmlrpc ├── os │ ├── clipboard │ ├── com │ ├── console │ ├── dir │ ├── exception │ ├── fakeconsole │ ├── fs │ ├── process │ ├── rapi │ ├── registry │ ├── shell │ └── threads ├── random │ ├── gm │ ├── gm~ │ └── simple ├── string │ ├── dynamic │ ├── iconv │ ├── justify │ ├── misc │ ├── misc~ │ ├── mstrings │ ├── regex │ ├── soundex │ ├── trim │ └── xmlparse ├── testing ├── ui │ ├── agar │ ├── cd │ ├── gl │ ├── glu │ ├── glut │ ├── gtk │ ├── gtk2 │ ├── gui │ ├── gui-db │ ├── gui-iup-img │ ├── gui~ │ ├── iup │ ├── iup~ │ └── sdl └── util │ ├── auxstack │ ├── classes │ ├── contexts │ ├── disasm │ ├── eachline │ ├── locals │ ├── misc │ ├── portio │ ├── scase │ ├── tasks │ └── units ├── restart.bat ├── restore.bat └── src ├── Makefile ├── brieflz.asm ├── corelin-new.asm ├── corelin-old.asm ├── corelin.asm ├── corewin.asm ├── help.txt ├── macros ├── new ├── brieflz.asm ├── corelin ├── corelin-new.asm ├── macros └── revacore.asm ├── reva.f ├── reva.f~ ├── reva.ico ├── reva.rc ├── reva.res ├── revacore-new.asm ├── revacore.asm └── various.f /.gitignore: -------------------------------------------------------------------------------- 1 | *.f~ -------------------------------------------------------------------------------- /4thCosy.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/4thCosy.lnk -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CREDITS -------------------------------------------------------------------------------- /CoSy/AltStackOps.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/AltStackOps.f -------------------------------------------------------------------------------- /CoSy/CSauxstack.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/CSauxstack.f -------------------------------------------------------------------------------- /CoSy/CoSy.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/CoSy.bk -------------------------------------------------------------------------------- /CoSy/CoSy.csy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/CoSy.csy -------------------------------------------------------------------------------- /CoSy/CoSy.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/CoSy.f -------------------------------------------------------------------------------- /CoSy/Derived.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/Derived.f -------------------------------------------------------------------------------- /CoSy/Fact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/Fact -------------------------------------------------------------------------------- /CoSy/FloatsPlus.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/FloatsPlus.f -------------------------------------------------------------------------------- /CoSy/ForthDay15.csy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/ForthDay15.csy -------------------------------------------------------------------------------- /CoSy/Furniture.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/Furniture.f -------------------------------------------------------------------------------- /CoSy/Head#change.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/Head#change.f -------------------------------------------------------------------------------- /CoSy/IntroHelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/IntroHelp.txt -------------------------------------------------------------------------------- /CoSy/Job.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/Job.f -------------------------------------------------------------------------------- /CoSy/K_verbs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/K_verbs.csv -------------------------------------------------------------------------------- /CoSy/LanguageLinks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/LanguageLinks.txt -------------------------------------------------------------------------------- /CoSy/ParameterPushing.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/ParameterPushing.f -------------------------------------------------------------------------------- /CoSy/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/ReadMe.txt -------------------------------------------------------------------------------- /CoSy/RecurInterp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/RecurInterp.f -------------------------------------------------------------------------------- /CoSy/SaveRestore.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/SaveRestore.f -------------------------------------------------------------------------------- /CoSy/SaveRestoreNew.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/SaveRestoreNew.f -------------------------------------------------------------------------------- /CoSy/ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/ToDo.txt -------------------------------------------------------------------------------- /CoSy/Tui.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/Tui.f -------------------------------------------------------------------------------- /CoSy/Util.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/Util.f -------------------------------------------------------------------------------- /CoSy/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/help.txt -------------------------------------------------------------------------------- /CoSy/iup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/iup -------------------------------------------------------------------------------- /CoSy/math.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/math.f -------------------------------------------------------------------------------- /CoSy/res.txt: -------------------------------------------------------------------------------- 1 | .\CoSy\ -------------------------------------------------------------------------------- /CoSy/state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/state.txt -------------------------------------------------------------------------------- /CoSy/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/text.txt -------------------------------------------------------------------------------- /CoSy/util.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/util.f -------------------------------------------------------------------------------- /CoSy/y2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/y2015.txt -------------------------------------------------------------------------------- /CoSy/y2016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/y2016.txt -------------------------------------------------------------------------------- /CoSy/y2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/y2017.txt -------------------------------------------------------------------------------- /CoSy/y2018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy/y2018.txt -------------------------------------------------------------------------------- /CoSy@.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSy@.bat -------------------------------------------------------------------------------- /CoSyCube50.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSyCube50.ico -------------------------------------------------------------------------------- /CoSyWelcome_ReadFirst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSyWelcome_ReadFirst.html -------------------------------------------------------------------------------- /CoSyWelcome_ReadFirst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSyWelcome_ReadFirst.md -------------------------------------------------------------------------------- /CoSyWelcome_ReadFirst160806.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/CoSyWelcome_ReadFirst160806.html -------------------------------------------------------------------------------- /Cosy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/Cosy.bat -------------------------------------------------------------------------------- /FASM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/FASM.EXE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/Makefile -------------------------------------------------------------------------------- /Physics/SB.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/Physics/SB.f -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/README.md -------------------------------------------------------------------------------- /RevaREADME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/RevaREADME -------------------------------------------------------------------------------- /THANKS!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/THANKS! -------------------------------------------------------------------------------- /bench/bench-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench-c.c -------------------------------------------------------------------------------- /bench/bench-common.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench-common.f -------------------------------------------------------------------------------- /bench/bench-fp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench-fp.f -------------------------------------------------------------------------------- /bench/bench-gf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench-gf.f -------------------------------------------------------------------------------- /bench/bench-if.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench-if.f -------------------------------------------------------------------------------- /bench/bench-sf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench-sf.f -------------------------------------------------------------------------------- /bench/bench-vx.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench-vx.f -------------------------------------------------------------------------------- /bench/bench-w32f.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench-w32f.f -------------------------------------------------------------------------------- /bench/bench.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/bench.f -------------------------------------------------------------------------------- /bench/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bench/makefile -------------------------------------------------------------------------------- /bench/revatemporaryfile.1075$: -------------------------------------------------------------------------------- 1 | powersave 2 | -------------------------------------------------------------------------------- /bench/revatemporaryfile.508$: -------------------------------------------------------------------------------- 1 | powersave 2 | -------------------------------------------------------------------------------- /bench/revatemporaryfile.690$: -------------------------------------------------------------------------------- 1 | powersave 2 | -------------------------------------------------------------------------------- /bench/revatemporaryfile.725$: -------------------------------------------------------------------------------- 1 | powersave 2 | -------------------------------------------------------------------------------- /bin/agar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/agar.dll -------------------------------------------------------------------------------- /bin/bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/bench -------------------------------------------------------------------------------- /bin/bench.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/bench.bat -------------------------------------------------------------------------------- /bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/build -------------------------------------------------------------------------------- /bin/cd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/cd.dll -------------------------------------------------------------------------------- /bin/cdiup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/cdiup.dll -------------------------------------------------------------------------------- /bin/checkhelp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/checkhelp.f -------------------------------------------------------------------------------- /bin/dist.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/dist.f -------------------------------------------------------------------------------- /bin/firstrun.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/firstrun.f -------------------------------------------------------------------------------- /bin/freetype.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/freetype.dll -------------------------------------------------------------------------------- /bin/genhelp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/genhelp.f -------------------------------------------------------------------------------- /bin/glut32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/glut32.dll -------------------------------------------------------------------------------- /bin/graphapp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/graphapp.dll -------------------------------------------------------------------------------- /bin/help.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/help.db -------------------------------------------------------------------------------- /bin/imath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/imath.dll -------------------------------------------------------------------------------- /bin/imath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/imath.txt -------------------------------------------------------------------------------- /bin/inline.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/inline.f -------------------------------------------------------------------------------- /bin/install.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/install.f -------------------------------------------------------------------------------- /bin/iup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/iup.dll -------------------------------------------------------------------------------- /bin/iupcontrols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/iupcontrols.dll -------------------------------------------------------------------------------- /bin/iupgl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/iupgl.dll -------------------------------------------------------------------------------- /bin/iupim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/iupim.dll -------------------------------------------------------------------------------- /bin/iupimglib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/iupimglib.dll -------------------------------------------------------------------------------- /bin/libexpat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libexpat.dll -------------------------------------------------------------------------------- /bin/libgobject-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libgobject-2.0-0.dll -------------------------------------------------------------------------------- /bin/libgpg-error-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libgpg-error-0.dll -------------------------------------------------------------------------------- /bin/libgpgme-11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libgpgme-11.dll -------------------------------------------------------------------------------- /bin/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libiconv2.dll -------------------------------------------------------------------------------- /bin/libimath.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libimath.so -------------------------------------------------------------------------------- /bin/libmySQL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libmySQL.dll -------------------------------------------------------------------------------- /bin/libpng13.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libpng13.dll -------------------------------------------------------------------------------- /bin/libs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/libs.f -------------------------------------------------------------------------------- /bin/pcre3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/pcre3.dll -------------------------------------------------------------------------------- /bin/pdcurses.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/pdcurses.dll -------------------------------------------------------------------------------- /bin/pthread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/pthread.dll -------------------------------------------------------------------------------- /bin/reva.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/reva.exe -------------------------------------------------------------------------------- /bin/reva.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/reva.x -------------------------------------------------------------------------------- /bin/revacore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/revacore -------------------------------------------------------------------------------- /bin/rss_process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/rss_process.dll -------------------------------------------------------------------------------- /bin/sdl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/sdl.dll -------------------------------------------------------------------------------- /bin/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/sqlite3.dll -------------------------------------------------------------------------------- /bin/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/sqlite3.exe -------------------------------------------------------------------------------- /bin/test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/test.f -------------------------------------------------------------------------------- /bin/testlib.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/testlib.f -------------------------------------------------------------------------------- /bin/tests.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/tests.f -------------------------------------------------------------------------------- /bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/bin/zlib1.dll -------------------------------------------------------------------------------- /contrib/chess4reva.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/chess4reva.f -------------------------------------------------------------------------------- /contrib/debug.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/debug.f -------------------------------------------------------------------------------- /contrib/float.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/float.txt -------------------------------------------------------------------------------- /contrib/fpout18.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/fpout18.f -------------------------------------------------------------------------------- /contrib/ft-reva.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/ft-reva.vim -------------------------------------------------------------------------------- /contrib/memory.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/memory.fth -------------------------------------------------------------------------------- /contrib/reva.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/reva.vim -------------------------------------------------------------------------------- /contrib/reva2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/reva2.ico -------------------------------------------------------------------------------- /contrib/reva3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/reva3.ico -------------------------------------------------------------------------------- /contrib/rss_process.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/rss_process.zip -------------------------------------------------------------------------------- /contrib/sun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/sun.txt -------------------------------------------------------------------------------- /contrib/sun.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/sun.zip -------------------------------------------------------------------------------- /contrib/winlife.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/contrib/winlife.f -------------------------------------------------------------------------------- /downloads/2015-January.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/downloads/2015-January.txt.gz -------------------------------------------------------------------------------- /downloads/loan.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/downloads/loan.4th -------------------------------------------------------------------------------- /examples/3n1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/3n1.f -------------------------------------------------------------------------------- /examples/alg-test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/alg-test.f -------------------------------------------------------------------------------- /examples/arm/armapp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/arm/armapp.f -------------------------------------------------------------------------------- /examples/arm/armlife.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/arm/armlife.f -------------------------------------------------------------------------------- /examples/arm/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/arm/readme.txt -------------------------------------------------------------------------------- /examples/asm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/asm.f -------------------------------------------------------------------------------- /examples/beer.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/beer.f -------------------------------------------------------------------------------- /examples/bf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/bf.f -------------------------------------------------------------------------------- /examples/bf1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/bf1.f -------------------------------------------------------------------------------- /examples/bf2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/bf2.f -------------------------------------------------------------------------------- /examples/block-editor.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/block-editor.f -------------------------------------------------------------------------------- /examples/brownian.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/brownian.f -------------------------------------------------------------------------------- /examples/calendar.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/calendar.f -------------------------------------------------------------------------------- /examples/catch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/catch.f -------------------------------------------------------------------------------- /examples/cgi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/cgi.f -------------------------------------------------------------------------------- /examples/codesize.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/codesize.f -------------------------------------------------------------------------------- /examples/datediff.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/datediff.f -------------------------------------------------------------------------------- /examples/dhttpd.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/dhttpd.f -------------------------------------------------------------------------------- /examples/dllexplorer.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/dllexplorer.f -------------------------------------------------------------------------------- /examples/dump.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/dump.f -------------------------------------------------------------------------------- /examples/ed.4th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/ed.4th -------------------------------------------------------------------------------- /examples/ekeys.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/ekeys.f -------------------------------------------------------------------------------- /examples/fib.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/fib.f -------------------------------------------------------------------------------- /examples/fib2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/fib2.f -------------------------------------------------------------------------------- /examples/fizzbuzz.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/fizzbuzz.f -------------------------------------------------------------------------------- /examples/galife.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/galife.f -------------------------------------------------------------------------------- /examples/gl/gl-scene.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/gl/gl-scene.f -------------------------------------------------------------------------------- /examples/gl/gl-shading.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/gl/gl-shading.f -------------------------------------------------------------------------------- /examples/gl/gl-twod.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/gl/gl-twod.f -------------------------------------------------------------------------------- /examples/grep.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/grep.f -------------------------------------------------------------------------------- /examples/gtk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/gtk.f -------------------------------------------------------------------------------- /examples/gtk.f~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/gtk.f~ -------------------------------------------------------------------------------- /examples/hanoi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/hanoi.f -------------------------------------------------------------------------------- /examples/hello/hello.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/hello/hello.f -------------------------------------------------------------------------------- /examples/hello/hello2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/hello/hello2.f -------------------------------------------------------------------------------- /examples/hello/hello3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/hello/hello3.f -------------------------------------------------------------------------------- /examples/hello/hello4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/hello/hello4.f -------------------------------------------------------------------------------- /examples/hello/hello5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/hello/hello5.f -------------------------------------------------------------------------------- /examples/hello/hello6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/hello/hello6.f -------------------------------------------------------------------------------- /examples/hello/hello7.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/hello/hello7.f -------------------------------------------------------------------------------- /examples/http.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/http.f -------------------------------------------------------------------------------- /examples/ignorecase.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/ignorecase.f -------------------------------------------------------------------------------- /examples/iskey.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iskey.f -------------------------------------------------------------------------------- /examples/iup/binary-clock.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/binary-clock.f -------------------------------------------------------------------------------- /examples/iup/brownian.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/brownian.f -------------------------------------------------------------------------------- /examples/iup/callback-test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/callback-test.f -------------------------------------------------------------------------------- /examples/iup/cd-test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/cd-test.f -------------------------------------------------------------------------------- /examples/iup/db-test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/db-test.f -------------------------------------------------------------------------------- /examples/iup/file-dlg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/file-dlg.f -------------------------------------------------------------------------------- /examples/iup/frame-test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/frame-test.f -------------------------------------------------------------------------------- /examples/iup/gl-test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/gl-test.f -------------------------------------------------------------------------------- /examples/iup/gui-test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/gui-test.f -------------------------------------------------------------------------------- /examples/iup/gui-test2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/gui-test2.f -------------------------------------------------------------------------------- /examples/iup/image-convert.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/iup/image-convert.f -------------------------------------------------------------------------------- /examples/makeexe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/makeexe.f -------------------------------------------------------------------------------- /examples/map.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/map.f -------------------------------------------------------------------------------- /examples/md5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/md5.f -------------------------------------------------------------------------------- /examples/meteor.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/meteor.f -------------------------------------------------------------------------------- /examples/meteor2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/meteor2.f -------------------------------------------------------------------------------- /examples/mevarchim.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/mevarchim.f -------------------------------------------------------------------------------- /examples/notready/caravan.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/notready/caravan.f -------------------------------------------------------------------------------- /examples/notready/meteor.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/notready/meteor.f -------------------------------------------------------------------------------- /examples/notready/meteor2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/notready/meteor2.f -------------------------------------------------------------------------------- /examples/notready/normalize.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/notready/normalize.f -------------------------------------------------------------------------------- /examples/notready/rambam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/notready/rambam.f -------------------------------------------------------------------------------- /examples/notready/upsies-downsies.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/notready/upsies-downsies.f -------------------------------------------------------------------------------- /examples/notready/zemanim.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/notready/zemanim.f -------------------------------------------------------------------------------- /examples/onstart.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/onstart.f -------------------------------------------------------------------------------- /examples/pi/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/pi/pi.c -------------------------------------------------------------------------------- /examples/pi/pi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/pi/pi.f -------------------------------------------------------------------------------- /examples/pi/pi2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/pi/pi2.f -------------------------------------------------------------------------------- /examples/pi/pispigot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/pi/pispigot.f -------------------------------------------------------------------------------- /examples/pi/pispigot2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/pi/pispigot2.f -------------------------------------------------------------------------------- /examples/process.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/process.f -------------------------------------------------------------------------------- /examples/quoth.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/quoth.f -------------------------------------------------------------------------------- /examples/rambam.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/rambam.f -------------------------------------------------------------------------------- /examples/revafind.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/revafind.exe -------------------------------------------------------------------------------- /examples/revafind.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/revafind.f -------------------------------------------------------------------------------- /examples/robotron.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/robotron.f -------------------------------------------------------------------------------- /examples/see2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/see2.f -------------------------------------------------------------------------------- /examples/sieve.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/sieve.f -------------------------------------------------------------------------------- /examples/smtp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/smtp.f -------------------------------------------------------------------------------- /examples/sockets.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/sockets.f -------------------------------------------------------------------------------- /examples/special.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/special.f -------------------------------------------------------------------------------- /examples/sqlite.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/sqlite.f -------------------------------------------------------------------------------- /examples/sudoku.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/sudoku.f -------------------------------------------------------------------------------- /examples/task.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/task.f -------------------------------------------------------------------------------- /examples/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/test.db -------------------------------------------------------------------------------- /examples/thehouse.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/thehouse.f -------------------------------------------------------------------------------- /examples/threads.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/threads.f -------------------------------------------------------------------------------- /examples/tictactoe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/tictactoe.f -------------------------------------------------------------------------------- /examples/upsies-downsies.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/upsies-downsies.f -------------------------------------------------------------------------------- /examples/utf8.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/utf8.f -------------------------------------------------------------------------------- /examples/winapp.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/winapp.f -------------------------------------------------------------------------------- /examples/winhello.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/winhello.f -------------------------------------------------------------------------------- /examples/winlife.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/winlife.f -------------------------------------------------------------------------------- /examples/words.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/words.f -------------------------------------------------------------------------------- /examples/xml.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/xml.f -------------------------------------------------------------------------------- /examples/xmlrpc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/xmlrpc.f -------------------------------------------------------------------------------- /examples/zipdb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/examples/zipdb.f -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/install.bat -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/install.sh -------------------------------------------------------------------------------- /lib/alg/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/array -------------------------------------------------------------------------------- /lib/alg/bubblesort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/bubblesort -------------------------------------------------------------------------------- /lib/alg/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/common -------------------------------------------------------------------------------- /lib/alg/common~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/common~ -------------------------------------------------------------------------------- /lib/alg/enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/enum -------------------------------------------------------------------------------- /lib/alg/hsort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/hsort -------------------------------------------------------------------------------- /lib/alg/htable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/htable -------------------------------------------------------------------------------- /lib/alg/insertsort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/insertsort -------------------------------------------------------------------------------- /lib/alg/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/list -------------------------------------------------------------------------------- /lib/alg/quicksort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/quicksort -------------------------------------------------------------------------------- /lib/alg/sort-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/sort-common -------------------------------------------------------------------------------- /lib/alg/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/stack -------------------------------------------------------------------------------- /lib/alg/structs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/alg/structs -------------------------------------------------------------------------------- /lib/ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ansi -------------------------------------------------------------------------------- /lib/app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/app/console -------------------------------------------------------------------------------- /lib/arm/armasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/arm/armasm -------------------------------------------------------------------------------- /lib/arm/armimg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/arm/armimg.asm -------------------------------------------------------------------------------- /lib/arm/armimg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/arm/armimg.exe -------------------------------------------------------------------------------- /lib/arm/armtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/arm/armtc -------------------------------------------------------------------------------- /lib/arm/armwinhdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/arm/armwinhdr -------------------------------------------------------------------------------- /lib/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/asm -------------------------------------------------------------------------------- /lib/assembler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/assembler -------------------------------------------------------------------------------- /lib/callbacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/callbacks -------------------------------------------------------------------------------- /lib/choices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/choices -------------------------------------------------------------------------------- /lib/crypt/gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/crypt/gpg -------------------------------------------------------------------------------- /lib/crypt/md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/crypt/md5 -------------------------------------------------------------------------------- /lib/crypt/rc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/crypt/rc4 -------------------------------------------------------------------------------- /lib/date/calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/date/calendar -------------------------------------------------------------------------------- /lib/date/church: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/date/church -------------------------------------------------------------------------------- /lib/date/hebrew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/date/hebrew -------------------------------------------------------------------------------- /lib/date/holidays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/date/holidays -------------------------------------------------------------------------------- /lib/date/islam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/date/islam -------------------------------------------------------------------------------- /lib/date/iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/date/iso -------------------------------------------------------------------------------- /lib/date/julian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/date/julian -------------------------------------------------------------------------------- /lib/date/sedra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/date/sedra -------------------------------------------------------------------------------- /lib/db/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/db/common -------------------------------------------------------------------------------- /lib/db/mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/db/mysql -------------------------------------------------------------------------------- /lib/db/sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/db/sql -------------------------------------------------------------------------------- /lib/db/sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/db/sqlite -------------------------------------------------------------------------------- /lib/debugger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/debugger -------------------------------------------------------------------------------- /lib/helper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/math/apnea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/math/apnea -------------------------------------------------------------------------------- /lib/math/big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/math/big -------------------------------------------------------------------------------- /lib/math/doubles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/math/doubles -------------------------------------------------------------------------------- /lib/math/floats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/math/floats -------------------------------------------------------------------------------- /lib/math/mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/math/mod -------------------------------------------------------------------------------- /lib/net/cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/net/cgi -------------------------------------------------------------------------------- /lib/net/ftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/net/ftp -------------------------------------------------------------------------------- /lib/net/http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/net/http -------------------------------------------------------------------------------- /lib/net/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/net/mime -------------------------------------------------------------------------------- /lib/net/sockets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/net/sockets -------------------------------------------------------------------------------- /lib/net/xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/net/xml -------------------------------------------------------------------------------- /lib/net/xmlrpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/net/xmlrpc -------------------------------------------------------------------------------- /lib/os/clipboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/clipboard -------------------------------------------------------------------------------- /lib/os/com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/com -------------------------------------------------------------------------------- /lib/os/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/console -------------------------------------------------------------------------------- /lib/os/dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/dir -------------------------------------------------------------------------------- /lib/os/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/exception -------------------------------------------------------------------------------- /lib/os/fakeconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/fakeconsole -------------------------------------------------------------------------------- /lib/os/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/fs -------------------------------------------------------------------------------- /lib/os/process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/process -------------------------------------------------------------------------------- /lib/os/rapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/rapi -------------------------------------------------------------------------------- /lib/os/registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/registry -------------------------------------------------------------------------------- /lib/os/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/shell -------------------------------------------------------------------------------- /lib/os/threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/os/threads -------------------------------------------------------------------------------- /lib/random/gm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/random/gm -------------------------------------------------------------------------------- /lib/random/gm~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/random/gm~ -------------------------------------------------------------------------------- /lib/random/simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/random/simple -------------------------------------------------------------------------------- /lib/string/dynamic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/dynamic -------------------------------------------------------------------------------- /lib/string/iconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/iconv -------------------------------------------------------------------------------- /lib/string/justify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/justify -------------------------------------------------------------------------------- /lib/string/misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/misc -------------------------------------------------------------------------------- /lib/string/misc~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/misc~ -------------------------------------------------------------------------------- /lib/string/mstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/mstrings -------------------------------------------------------------------------------- /lib/string/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/regex -------------------------------------------------------------------------------- /lib/string/soundex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/soundex -------------------------------------------------------------------------------- /lib/string/trim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/trim -------------------------------------------------------------------------------- /lib/string/xmlparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/string/xmlparse -------------------------------------------------------------------------------- /lib/testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/testing -------------------------------------------------------------------------------- /lib/ui/agar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/agar -------------------------------------------------------------------------------- /lib/ui/cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/cd -------------------------------------------------------------------------------- /lib/ui/gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/gl -------------------------------------------------------------------------------- /lib/ui/glu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/glu -------------------------------------------------------------------------------- /lib/ui/glut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/glut -------------------------------------------------------------------------------- /lib/ui/gtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/gtk -------------------------------------------------------------------------------- /lib/ui/gtk2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/gtk2 -------------------------------------------------------------------------------- /lib/ui/gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/gui -------------------------------------------------------------------------------- /lib/ui/gui-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/gui-db -------------------------------------------------------------------------------- /lib/ui/gui-iup-img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/gui-iup-img -------------------------------------------------------------------------------- /lib/ui/gui~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/gui~ -------------------------------------------------------------------------------- /lib/ui/iup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/iup -------------------------------------------------------------------------------- /lib/ui/iup~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/iup~ -------------------------------------------------------------------------------- /lib/ui/sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/ui/sdl -------------------------------------------------------------------------------- /lib/util/auxstack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/auxstack -------------------------------------------------------------------------------- /lib/util/classes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/classes -------------------------------------------------------------------------------- /lib/util/contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/contexts -------------------------------------------------------------------------------- /lib/util/disasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/disasm -------------------------------------------------------------------------------- /lib/util/eachline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/eachline -------------------------------------------------------------------------------- /lib/util/locals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/locals -------------------------------------------------------------------------------- /lib/util/misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/misc -------------------------------------------------------------------------------- /lib/util/portio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/portio -------------------------------------------------------------------------------- /lib/util/scase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/scase -------------------------------------------------------------------------------- /lib/util/tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/tasks -------------------------------------------------------------------------------- /lib/util/units: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/lib/util/units -------------------------------------------------------------------------------- /restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/restart.bat -------------------------------------------------------------------------------- /restore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/restore.bat -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/brieflz.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/brieflz.asm -------------------------------------------------------------------------------- /src/corelin-new.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/corelin-new.asm -------------------------------------------------------------------------------- /src/corelin-old.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/corelin-old.asm -------------------------------------------------------------------------------- /src/corelin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/corelin.asm -------------------------------------------------------------------------------- /src/corewin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/corewin.asm -------------------------------------------------------------------------------- /src/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/help.txt -------------------------------------------------------------------------------- /src/macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/macros -------------------------------------------------------------------------------- /src/new/brieflz.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/new/brieflz.asm -------------------------------------------------------------------------------- /src/new/corelin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/new/corelin -------------------------------------------------------------------------------- /src/new/corelin-new.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/new/corelin-new.asm -------------------------------------------------------------------------------- /src/new/macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/new/macros -------------------------------------------------------------------------------- /src/new/revacore.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/new/revacore.asm -------------------------------------------------------------------------------- /src/reva.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/reva.f -------------------------------------------------------------------------------- /src/reva.f~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/reva.f~ -------------------------------------------------------------------------------- /src/reva.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/reva.ico -------------------------------------------------------------------------------- /src/reva.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "reva.ico" 2 | -------------------------------------------------------------------------------- /src/reva.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/reva.res -------------------------------------------------------------------------------- /src/revacore-new.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/revacore-new.asm -------------------------------------------------------------------------------- /src/revacore.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/revacore.asm -------------------------------------------------------------------------------- /src/various.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoSyBob/CoSy/HEAD/src/various.f --------------------------------------------------------------------------------