├── 4k ├── C2P1x1x8Half.S ├── Chunky.S ├── CompileWordCode.S ├── Constants.S ├── GenerateWordCode.S ├── Interpreter.S ├── LnsFMsynth2.S ├── Main.S ├── Music.S ├── Palette.S ├── Particles.S ├── Screen8bit.S ├── System.S ├── Waves.S ├── WordCode.S ├── constantpool.dat └── tree.dat ├── C ├── interpreter.c └── musicdata.c ├── LICENSE.md └── README.md /4k/C2P1x1x8Half.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/C2P1x1x8Half.S -------------------------------------------------------------------------------- /4k/Chunky.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Chunky.S -------------------------------------------------------------------------------- /4k/CompileWordCode.S: -------------------------------------------------------------------------------- 1 | 2 | WC_INCLUDED = 1 3 | 4 | include 4k:WordCode.S 5 | -------------------------------------------------------------------------------- /4k/Constants.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Constants.S -------------------------------------------------------------------------------- /4k/GenerateWordCode.S: -------------------------------------------------------------------------------- 1 | 2 | WC_INCLUDED = 10 3 | 4 | include 4k:WordCode.S 5 | -------------------------------------------------------------------------------- /4k/Interpreter.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Interpreter.S -------------------------------------------------------------------------------- /4k/LnsFMsynth2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/LnsFMsynth2.S -------------------------------------------------------------------------------- /4k/Main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Main.S -------------------------------------------------------------------------------- /4k/Music.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Music.S -------------------------------------------------------------------------------- /4k/Palette.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Palette.S -------------------------------------------------------------------------------- /4k/Particles.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Particles.S -------------------------------------------------------------------------------- /4k/Screen8bit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Screen8bit.S -------------------------------------------------------------------------------- /4k/System.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/System.S -------------------------------------------------------------------------------- /4k/Waves.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/Waves.S -------------------------------------------------------------------------------- /4k/WordCode.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/WordCode.S -------------------------------------------------------------------------------- /4k/constantpool.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/constantpool.dat -------------------------------------------------------------------------------- /4k/tree.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/4k/tree.dat -------------------------------------------------------------------------------- /C/interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/C/interpreter.c -------------------------------------------------------------------------------- /C/musicdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/C/musicdata.c -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/askeksa/Ikadalawampu/HEAD/README.md --------------------------------------------------------------------------------