├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Makefile ├── amigaos-toolchain.cmake ├── bitmap ├── CMakeLists.txt ├── bitmap.c ├── bitmap.h ├── bitmap_test.c ├── c2p1x1_4_c5_bm.h ├── c2p1x1_4_c5_bm.s ├── c2p1x1_4_c5_bm_test.c ├── c2p1x1_4_c5_bm_word.h ├── c2p1x1_4_c5_bm_word.s ├── c2p1x1_4_c5_bm_word_test.c ├── c2p1x1_6_c5_bm.h ├── c2p1x1_6_c5_bm.s ├── c2p1x1_6_c5_bm_040.h ├── c2p1x1_6_c5_bm_040.s ├── c2p1x1_6_c5_bm_040_test.c ├── c2p1x1_6_c5_bm_test.c ├── c2p1x1_6_c5_bm_word.h ├── c2p1x1_6_c5_bm_word.s ├── c2p1x1_6_c5_bm_word_test.c ├── c2p1x1_8_c5_bm.h ├── c2p1x1_8_c5_bm.s ├── c2p1x1_8_c5_bm_040.h ├── c2p1x1_8_c5_bm_040.s ├── c2p1x1_8_c5_bm_040_test.c ├── c2p1x1_8_c5_bm_test.c ├── c2p2x1_4_c5_bm.h ├── c2p2x1_4_c5_bm.s ├── c2p2x1_4_c5_bm_test.c ├── c2p2x1_8_c5_bm.h ├── c2p2x1_8_c5_bm.s ├── c2p2x1_8_c5_bm_test.c ├── c2p2x2_8_c5_bm.h ├── c2p2x2_8_c5_bm.s ├── c2p2x2_8_c5_bm_test.c └── readme.txt ├── ham8 ├── c2p_2rgb555_3rgb555h8_040.s ├── c2p_2rgb555_4rgb555h8_040.s ├── c2p_2rgb565_3rgb555h8_040.s ├── c2p_2rgb565_4rgb555h8_040.s ├── c2p_4rgb888_3rgb555h8_040.s ├── c2p_4rgb888_3rgb666h8_040.s ├── c2p_4rgb888_4rgb555h8_040.s ├── c2p_4rgb888_4rgb666h8_040.s └── readme.txt ├── history.txt ├── howto.txt ├── normal ├── CMakeLists.txt ├── c2p1x1_2_c5_gen.h ├── c2p1x1_2_c5_gen.s ├── c2p1x1_2_c5_gen_test.c ├── c2p1x1_4_c5_gen.h ├── c2p1x1_4_c5_gen.s ├── c2p1x1_4_c5_gen_test.c ├── c2p1x1_5_c3b1_030.h ├── c2p1x1_5_c3b1_030.s ├── c2p1x1_5_c3b1_030_test.c ├── c2p1x1_5_c5_030.h ├── c2p1x1_5_c5_030.s ├── c2p1x1_5_c5_030_test.c ├── c2p1x1_5_c5_060.h ├── c2p1x1_5_c5_060.s ├── c2p1x1_5_c5_060_test.c ├── c2p1x1_6_c3_sc_gen.h ├── c2p1x1_6_c3_sc_gen.s ├── c2p1x1_6_c3_sc_gen_test.c ├── c2p1x1_6_c3b1_030.h ├── c2p1x1_6_c3b1_030.s ├── c2p1x1_6_c3b1_030_test.c ├── c2p1x1_6_c5_030.h ├── c2p1x1_6_c5_030.s ├── c2p1x1_6_c5_030_2.h ├── c2p1x1_6_c5_030_2.s ├── c2p1x1_6_c5_030_2_test.c ├── c2p1x1_6_c5_030_test.c ├── c2p1x1_6_c5_040.h ├── c2p1x1_6_c5_040.s ├── c2p1x1_6_c5_040_test.c ├── c2p1x1_6_c5_gen.h ├── c2p1x1_6_c5_gen.s ├── c2p1x1_6_c5_gen_test.c ├── c2p1x1_8_c3_sc_gen.h ├── c2p1x1_8_c3_sc_gen.s ├── c2p1x1_8_c3_sc_gen_test.c ├── c2p1x1_8_c3b1_030.h ├── c2p1x1_8_c3b1_030.s ├── c2p1x1_8_c3b1_030_test.c ├── c2p1x1_8_c5_030.h ├── c2p1x1_8_c5_030.s ├── c2p1x1_8_c5_030_2.h ├── c2p1x1_8_c5_030_2.s ├── c2p1x1_8_c5_030_2_test.c ├── c2p1x1_8_c5_030_test.c ├── c2p1x1_8_c5_040.h ├── c2p1x1_8_c5_040.s ├── c2p1x1_8_c5_040_test.c ├── c2p1x1_8_c5_gen.h ├── c2p1x1_8_c5_gen.s ├── c2p1x1_8_c5_gen_test.c ├── c2p2x1_6_c4b1_gen.h ├── c2p2x1_6_c4b1_gen.s ├── c2p2x1_6_c4b1_gen_test.c ├── c2p2x1_6_c5_030.h ├── c2p2x1_6_c5_030.s ├── c2p2x1_6_c5_030_test.c ├── c2p2x1_8_c4b1_gen.h ├── c2p2x1_8_c4b1_gen.s ├── c2p2x1_8_c4b1_gen_test.c ├── c2p2x1_8_c5_030.h ├── c2p2x1_8_c5_030.s ├── c2p2x1_8_c5_030_test.c ├── c2p2x1_8_c5_gen.h ├── c2p2x1_8_c5_gen.s ├── c2p2x1_8_c5_gen_test.c ├── c2p2x2_8_c5_gen.h ├── c2p2x2_8_c5_gen.s ├── c2p2x2_8_c5_gen_test.c ├── normal.c ├── normal.h └── normal_test.c ├── old ├── 1997 │ ├── c2p1x1_6_c5_040.s │ ├── c2p1x1_6_c5_060.s │ ├── c2p1x1_8_c5_040.s │ ├── c2p1x1_8_c5_060.s │ ├── c2p2x1_6_c4b1_030.s │ ├── c2p2x1_8_c4b1_030.s │ └── readme.txt ├── 1998 │ ├── c2p1x1_8_c3b1_gen.s │ ├── c2p1x1_8_c5_040.s │ └── readme.txt ├── 1999 │ ├── c2p1x1_6_c5_040.s │ └── readme.txt ├── 1996_1 │ ├── c2p1x1_64_cpu3blit1_pub.s │ ├── c2p1x1_64_cpu5.s │ ├── c2p1x1_cpu3blit1_pub.s │ ├── c2p1x1_cpu5.s │ ├── c2p1x1_cpu5_pub.s │ ├── c2p2x1_cpu4_bs.s │ ├── c2p2x1_cpu4blit1_pub.s │ ├── c2p2x1_cpu5_pub.s │ └── readme.txt └── 1996_2 │ ├── c2p1x1_8_cpu3blit1_pub.s │ ├── c2p1x1_8_cpu5_pub.s │ ├── c2p2x1_8_cpu4blit1_pub.s │ ├── c2p2x1_8_cpu5_pub.s │ └── readme.txt ├── others ├── C2P1x1_256.S ├── c2p8_040_amlaukka.s ├── c2pak.asm ├── cpu5azure.asm ├── cpu5azure2.asm ├── ppc_c2p1.s ├── qblit.lha └── readme.txt ├── readme.txt ├── special ├── CMakeLists.txt ├── c2p1x1_4_c5_gen_spr64.s ├── c2p1x1_4_c5_word.h ├── c2p1x1_4_c5_word.s ├── c2p1x1_4_c5_word_test.c ├── c2p1x1_6_c0.s ├── c2p1x1_6_c0_2.s ├── c2p1x1_8_c0.s ├── c2p1x1_8_c0_2.s ├── c2p1x1_8_c0_3.s ├── c2p1x1_8_c0_4.s ├── c2p1x1_8_c0_5.s ├── c2p1x1_8_c0_6.s ├── c2p1x1_8_c5_gen_mini.s ├── c2p_rect.s ├── cc2p.c ├── readme.txt ├── special.c ├── special.h └── special_test.c ├── testhelpers ├── CMakeLists.txt ├── assert_array.h ├── random_160x256x4bpl_chunky.dat ├── random_160x256x6bpl_chunky.dat ├── random_160x256x8bpl_chunky.dat ├── random_224x240x2bpl_chunky.dat ├── random_224x240x4bpl_chunky.dat ├── random_224x240x6bpl_chunky.dat ├── random_224x240x8bpl_chunky.dat ├── random_224x240x8bpl_offs32x10_320x256x8bpl_planar.dat ├── random_320x256x2bpl_chunky.dat ├── random_320x256x4bpl_chunky.dat ├── random_320x256x5bpl_chunky.dat ├── random_320x256x6bpl_chunky.dat ├── random_320x256x8bpl_2x1_planar.dat ├── random_320x256x8bpl_2x2_planar.dat ├── random_320x256x8bpl_chunky.dat ├── random_320x256x8bpl_planar.dat ├── testdata.h └── testdata.s ├── testing.txt └── utest └── utest.h /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/Makefile -------------------------------------------------------------------------------- /amigaos-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/amigaos-toolchain.cmake -------------------------------------------------------------------------------- /bitmap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/CMakeLists.txt -------------------------------------------------------------------------------- /bitmap/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/bitmap.c -------------------------------------------------------------------------------- /bitmap/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/bitmap.h -------------------------------------------------------------------------------- /bitmap/bitmap_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/bitmap_test.c -------------------------------------------------------------------------------- /bitmap/c2p1x1_4_c5_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_4_c5_bm.h -------------------------------------------------------------------------------- /bitmap/c2p1x1_4_c5_bm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_4_c5_bm.s -------------------------------------------------------------------------------- /bitmap/c2p1x1_4_c5_bm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_4_c5_bm_test.c -------------------------------------------------------------------------------- /bitmap/c2p1x1_4_c5_bm_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_4_c5_bm_word.h -------------------------------------------------------------------------------- /bitmap/c2p1x1_4_c5_bm_word.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_4_c5_bm_word.s -------------------------------------------------------------------------------- /bitmap/c2p1x1_4_c5_bm_word_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_4_c5_bm_word_test.c -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm.h -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm.s -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm_040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm_040.h -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm_040.s -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm_040_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm_040_test.c -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm_test.c -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm_word.h -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm_word.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm_word.s -------------------------------------------------------------------------------- /bitmap/c2p1x1_6_c5_bm_word_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_6_c5_bm_word_test.c -------------------------------------------------------------------------------- /bitmap/c2p1x1_8_c5_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_8_c5_bm.h -------------------------------------------------------------------------------- /bitmap/c2p1x1_8_c5_bm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_8_c5_bm.s -------------------------------------------------------------------------------- /bitmap/c2p1x1_8_c5_bm_040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_8_c5_bm_040.h -------------------------------------------------------------------------------- /bitmap/c2p1x1_8_c5_bm_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_8_c5_bm_040.s -------------------------------------------------------------------------------- /bitmap/c2p1x1_8_c5_bm_040_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_8_c5_bm_040_test.c -------------------------------------------------------------------------------- /bitmap/c2p1x1_8_c5_bm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p1x1_8_c5_bm_test.c -------------------------------------------------------------------------------- /bitmap/c2p2x1_4_c5_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x1_4_c5_bm.h -------------------------------------------------------------------------------- /bitmap/c2p2x1_4_c5_bm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x1_4_c5_bm.s -------------------------------------------------------------------------------- /bitmap/c2p2x1_4_c5_bm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x1_4_c5_bm_test.c -------------------------------------------------------------------------------- /bitmap/c2p2x1_8_c5_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x1_8_c5_bm.h -------------------------------------------------------------------------------- /bitmap/c2p2x1_8_c5_bm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x1_8_c5_bm.s -------------------------------------------------------------------------------- /bitmap/c2p2x1_8_c5_bm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x1_8_c5_bm_test.c -------------------------------------------------------------------------------- /bitmap/c2p2x2_8_c5_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x2_8_c5_bm.h -------------------------------------------------------------------------------- /bitmap/c2p2x2_8_c5_bm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x2_8_c5_bm.s -------------------------------------------------------------------------------- /bitmap/c2p2x2_8_c5_bm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/bitmap/c2p2x2_8_c5_bm_test.c -------------------------------------------------------------------------------- /bitmap/readme.txt: -------------------------------------------------------------------------------- 1 | Routines which output directly to BitMaps 2 | -------------------------------------------------------------------------------- /ham8/c2p_2rgb555_3rgb555h8_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/c2p_2rgb555_3rgb555h8_040.s -------------------------------------------------------------------------------- /ham8/c2p_2rgb555_4rgb555h8_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/c2p_2rgb555_4rgb555h8_040.s -------------------------------------------------------------------------------- /ham8/c2p_2rgb565_3rgb555h8_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/c2p_2rgb565_3rgb555h8_040.s -------------------------------------------------------------------------------- /ham8/c2p_2rgb565_4rgb555h8_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/c2p_2rgb565_4rgb555h8_040.s -------------------------------------------------------------------------------- /ham8/c2p_4rgb888_3rgb555h8_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/c2p_4rgb888_3rgb555h8_040.s -------------------------------------------------------------------------------- /ham8/c2p_4rgb888_3rgb666h8_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/c2p_4rgb888_3rgb666h8_040.s -------------------------------------------------------------------------------- /ham8/c2p_4rgb888_4rgb555h8_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/c2p_4rgb888_4rgb555h8_040.s -------------------------------------------------------------------------------- /ham8/c2p_4rgb888_4rgb666h8_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/c2p_4rgb888_4rgb666h8_040.s -------------------------------------------------------------------------------- /ham8/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/ham8/readme.txt -------------------------------------------------------------------------------- /history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/history.txt -------------------------------------------------------------------------------- /howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/howto.txt -------------------------------------------------------------------------------- /normal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/CMakeLists.txt -------------------------------------------------------------------------------- /normal/c2p1x1_2_c5_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_2_c5_gen.h -------------------------------------------------------------------------------- /normal/c2p1x1_2_c5_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_2_c5_gen.s -------------------------------------------------------------------------------- /normal/c2p1x1_2_c5_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_2_c5_gen_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_4_c5_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_4_c5_gen.h -------------------------------------------------------------------------------- /normal/c2p1x1_4_c5_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_4_c5_gen.s -------------------------------------------------------------------------------- /normal/c2p1x1_4_c5_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_4_c5_gen_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_5_c3b1_030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c3b1_030.h -------------------------------------------------------------------------------- /normal/c2p1x1_5_c3b1_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c3b1_030.s -------------------------------------------------------------------------------- /normal/c2p1x1_5_c3b1_030_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c3b1_030_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_5_c5_030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c5_030.h -------------------------------------------------------------------------------- /normal/c2p1x1_5_c5_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c5_030.s -------------------------------------------------------------------------------- /normal/c2p1x1_5_c5_030_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c5_030_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_5_c5_060.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c5_060.h -------------------------------------------------------------------------------- /normal/c2p1x1_5_c5_060.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c5_060.s -------------------------------------------------------------------------------- /normal/c2p1x1_5_c5_060_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_5_c5_060_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_6_c3_sc_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c3_sc_gen.h -------------------------------------------------------------------------------- /normal/c2p1x1_6_c3_sc_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c3_sc_gen.s -------------------------------------------------------------------------------- /normal/c2p1x1_6_c3_sc_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c3_sc_gen_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_6_c3b1_030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c3b1_030.h -------------------------------------------------------------------------------- /normal/c2p1x1_6_c3b1_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c3b1_030.s -------------------------------------------------------------------------------- /normal/c2p1x1_6_c3b1_030_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c3b1_030_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_030.h -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_030.s -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_030_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_030_2.h -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_030_2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_030_2.s -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_030_2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_030_2_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_030_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_030_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_040.h -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_040.s -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_040_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_040_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_gen.h -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_gen.s -------------------------------------------------------------------------------- /normal/c2p1x1_6_c5_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_6_c5_gen_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_8_c3_sc_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c3_sc_gen.h -------------------------------------------------------------------------------- /normal/c2p1x1_8_c3_sc_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c3_sc_gen.s -------------------------------------------------------------------------------- /normal/c2p1x1_8_c3_sc_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c3_sc_gen_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_8_c3b1_030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c3b1_030.h -------------------------------------------------------------------------------- /normal/c2p1x1_8_c3b1_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c3b1_030.s -------------------------------------------------------------------------------- /normal/c2p1x1_8_c3b1_030_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c3b1_030_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_030.h -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_030.s -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_030_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_030_2.h -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_030_2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_030_2.s -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_030_2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_030_2_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_030_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_030_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_040.h -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_040.s -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_040_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_040_test.c -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_gen.h -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_gen.s -------------------------------------------------------------------------------- /normal/c2p1x1_8_c5_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p1x1_8_c5_gen_test.c -------------------------------------------------------------------------------- /normal/c2p2x1_6_c4b1_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_6_c4b1_gen.h -------------------------------------------------------------------------------- /normal/c2p2x1_6_c4b1_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_6_c4b1_gen.s -------------------------------------------------------------------------------- /normal/c2p2x1_6_c4b1_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_6_c4b1_gen_test.c -------------------------------------------------------------------------------- /normal/c2p2x1_6_c5_030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_6_c5_030.h -------------------------------------------------------------------------------- /normal/c2p2x1_6_c5_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_6_c5_030.s -------------------------------------------------------------------------------- /normal/c2p2x1_6_c5_030_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_6_c5_030_test.c -------------------------------------------------------------------------------- /normal/c2p2x1_8_c4b1_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c4b1_gen.h -------------------------------------------------------------------------------- /normal/c2p2x1_8_c4b1_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c4b1_gen.s -------------------------------------------------------------------------------- /normal/c2p2x1_8_c4b1_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c4b1_gen_test.c -------------------------------------------------------------------------------- /normal/c2p2x1_8_c5_030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c5_030.h -------------------------------------------------------------------------------- /normal/c2p2x1_8_c5_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c5_030.s -------------------------------------------------------------------------------- /normal/c2p2x1_8_c5_030_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c5_030_test.c -------------------------------------------------------------------------------- /normal/c2p2x1_8_c5_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c5_gen.h -------------------------------------------------------------------------------- /normal/c2p2x1_8_c5_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c5_gen.s -------------------------------------------------------------------------------- /normal/c2p2x1_8_c5_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x1_8_c5_gen_test.c -------------------------------------------------------------------------------- /normal/c2p2x2_8_c5_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x2_8_c5_gen.h -------------------------------------------------------------------------------- /normal/c2p2x2_8_c5_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x2_8_c5_gen.s -------------------------------------------------------------------------------- /normal/c2p2x2_8_c5_gen_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/c2p2x2_8_c5_gen_test.c -------------------------------------------------------------------------------- /normal/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/normal.c -------------------------------------------------------------------------------- /normal/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/normal.h -------------------------------------------------------------------------------- /normal/normal_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/normal/normal_test.c -------------------------------------------------------------------------------- /old/1996_1/c2p1x1_64_cpu3blit1_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/c2p1x1_64_cpu3blit1_pub.s -------------------------------------------------------------------------------- /old/1996_1/c2p1x1_64_cpu5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/c2p1x1_64_cpu5.s -------------------------------------------------------------------------------- /old/1996_1/c2p1x1_cpu3blit1_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/c2p1x1_cpu3blit1_pub.s -------------------------------------------------------------------------------- /old/1996_1/c2p1x1_cpu5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/c2p1x1_cpu5.s -------------------------------------------------------------------------------- /old/1996_1/c2p1x1_cpu5_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/c2p1x1_cpu5_pub.s -------------------------------------------------------------------------------- /old/1996_1/c2p2x1_cpu4_bs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/c2p2x1_cpu4_bs.s -------------------------------------------------------------------------------- /old/1996_1/c2p2x1_cpu4blit1_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/c2p2x1_cpu4blit1_pub.s -------------------------------------------------------------------------------- /old/1996_1/c2p2x1_cpu5_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/c2p2x1_cpu5_pub.s -------------------------------------------------------------------------------- /old/1996_1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_1/readme.txt -------------------------------------------------------------------------------- /old/1996_2/c2p1x1_8_cpu3blit1_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_2/c2p1x1_8_cpu3blit1_pub.s -------------------------------------------------------------------------------- /old/1996_2/c2p1x1_8_cpu5_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_2/c2p1x1_8_cpu5_pub.s -------------------------------------------------------------------------------- /old/1996_2/c2p2x1_8_cpu4blit1_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_2/c2p2x1_8_cpu4blit1_pub.s -------------------------------------------------------------------------------- /old/1996_2/c2p2x1_8_cpu5_pub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_2/c2p2x1_8_cpu5_pub.s -------------------------------------------------------------------------------- /old/1996_2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1996_2/readme.txt -------------------------------------------------------------------------------- /old/1997/c2p1x1_6_c5_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1997/c2p1x1_6_c5_040.s -------------------------------------------------------------------------------- /old/1997/c2p1x1_6_c5_060.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1997/c2p1x1_6_c5_060.s -------------------------------------------------------------------------------- /old/1997/c2p1x1_8_c5_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1997/c2p1x1_8_c5_040.s -------------------------------------------------------------------------------- /old/1997/c2p1x1_8_c5_060.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1997/c2p1x1_8_c5_060.s -------------------------------------------------------------------------------- /old/1997/c2p2x1_6_c4b1_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1997/c2p2x1_6_c4b1_030.s -------------------------------------------------------------------------------- /old/1997/c2p2x1_8_c4b1_030.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1997/c2p2x1_8_c4b1_030.s -------------------------------------------------------------------------------- /old/1997/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1997/readme.txt -------------------------------------------------------------------------------- /old/1998/c2p1x1_8_c3b1_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1998/c2p1x1_8_c3b1_gen.s -------------------------------------------------------------------------------- /old/1998/c2p1x1_8_c5_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1998/c2p1x1_8_c5_040.s -------------------------------------------------------------------------------- /old/1998/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1998/readme.txt -------------------------------------------------------------------------------- /old/1999/c2p1x1_6_c5_040.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1999/c2p1x1_6_c5_040.s -------------------------------------------------------------------------------- /old/1999/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/old/1999/readme.txt -------------------------------------------------------------------------------- /others/C2P1x1_256.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/others/C2P1x1_256.S -------------------------------------------------------------------------------- /others/c2p8_040_amlaukka.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/others/c2p8_040_amlaukka.s -------------------------------------------------------------------------------- /others/c2pak.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/others/c2pak.asm -------------------------------------------------------------------------------- /others/cpu5azure.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/others/cpu5azure.asm -------------------------------------------------------------------------------- /others/cpu5azure2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/others/cpu5azure2.asm -------------------------------------------------------------------------------- /others/ppc_c2p1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/others/ppc_c2p1.s -------------------------------------------------------------------------------- /others/qblit.lha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/others/qblit.lha -------------------------------------------------------------------------------- /others/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/others/readme.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/readme.txt -------------------------------------------------------------------------------- /special/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/CMakeLists.txt -------------------------------------------------------------------------------- /special/c2p1x1_4_c5_gen_spr64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_4_c5_gen_spr64.s -------------------------------------------------------------------------------- /special/c2p1x1_4_c5_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_4_c5_word.h -------------------------------------------------------------------------------- /special/c2p1x1_4_c5_word.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_4_c5_word.s -------------------------------------------------------------------------------- /special/c2p1x1_4_c5_word_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_4_c5_word_test.c -------------------------------------------------------------------------------- /special/c2p1x1_6_c0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_6_c0.s -------------------------------------------------------------------------------- /special/c2p1x1_6_c0_2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_6_c0_2.s -------------------------------------------------------------------------------- /special/c2p1x1_8_c0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_8_c0.s -------------------------------------------------------------------------------- /special/c2p1x1_8_c0_2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_8_c0_2.s -------------------------------------------------------------------------------- /special/c2p1x1_8_c0_3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_8_c0_3.s -------------------------------------------------------------------------------- /special/c2p1x1_8_c0_4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_8_c0_4.s -------------------------------------------------------------------------------- /special/c2p1x1_8_c0_5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_8_c0_5.s -------------------------------------------------------------------------------- /special/c2p1x1_8_c0_6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_8_c0_6.s -------------------------------------------------------------------------------- /special/c2p1x1_8_c5_gen_mini.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p1x1_8_c5_gen_mini.s -------------------------------------------------------------------------------- /special/c2p_rect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/c2p_rect.s -------------------------------------------------------------------------------- /special/cc2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/cc2p.c -------------------------------------------------------------------------------- /special/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/readme.txt -------------------------------------------------------------------------------- /special/special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/special.c -------------------------------------------------------------------------------- /special/special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/special.h -------------------------------------------------------------------------------- /special/special_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/special/special_test.c -------------------------------------------------------------------------------- /testhelpers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/CMakeLists.txt -------------------------------------------------------------------------------- /testhelpers/assert_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/assert_array.h -------------------------------------------------------------------------------- /testhelpers/random_160x256x4bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_160x256x4bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_160x256x6bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_160x256x6bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_160x256x8bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_160x256x8bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_224x240x2bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_224x240x2bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_224x240x4bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_224x240x4bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_224x240x6bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_224x240x6bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_224x240x8bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_224x240x8bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_224x240x8bpl_offs32x10_320x256x8bpl_planar.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_224x240x8bpl_offs32x10_320x256x8bpl_planar.dat -------------------------------------------------------------------------------- /testhelpers/random_320x256x2bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_320x256x2bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_320x256x4bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_320x256x4bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_320x256x5bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_320x256x5bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_320x256x6bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_320x256x6bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_320x256x8bpl_2x1_planar.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_320x256x8bpl_2x1_planar.dat -------------------------------------------------------------------------------- /testhelpers/random_320x256x8bpl_2x2_planar.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_320x256x8bpl_2x2_planar.dat -------------------------------------------------------------------------------- /testhelpers/random_320x256x8bpl_chunky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_320x256x8bpl_chunky.dat -------------------------------------------------------------------------------- /testhelpers/random_320x256x8bpl_planar.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/random_320x256x8bpl_planar.dat -------------------------------------------------------------------------------- /testhelpers/testdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/testdata.h -------------------------------------------------------------------------------- /testhelpers/testdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testhelpers/testdata.s -------------------------------------------------------------------------------- /testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/testing.txt -------------------------------------------------------------------------------- /utest/utest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalmalyzer/kalms-c2p/HEAD/utest/utest.h --------------------------------------------------------------------------------