├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── AppleCommander.jar └── V2Make.scpt ├── notes ├── title.txt └── v1.txt ├── res └── work.dsk └── src ├── 4live.a ├── lcase.a └── lcase.ct /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/README.md -------------------------------------------------------------------------------- /bin/AppleCommander.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/bin/AppleCommander.jar -------------------------------------------------------------------------------- /bin/V2Make.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/bin/V2Make.scpt -------------------------------------------------------------------------------- /notes/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/notes/title.txt -------------------------------------------------------------------------------- /notes/v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/notes/v1.txt -------------------------------------------------------------------------------- /res/work.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/res/work.dsk -------------------------------------------------------------------------------- /src/4live.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/src/4live.a -------------------------------------------------------------------------------- /src/lcase.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/src/lcase.a -------------------------------------------------------------------------------- /src/lcase.ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a2-4am/4live/HEAD/src/lcase.ct --------------------------------------------------------------------------------