├── .github └── workflows │ └── pvcollib_doc_package.yml ├── LICENSE ├── Makefile ├── README.md ├── bin ├── cp.exe ├── echo.exe ├── find.exe ├── grep.exe ├── make.exe ├── mkdir.exe ├── msys-1.0.dll ├── msys-iconv-2.dll ├── msys-intl-8.dll ├── msys-regex-1.dll ├── msys-termcap-0.dll ├── mv.exe ├── rm.exe ├── sed.exe └── sh.exe ├── coleco-examples ├── Makefile ├── audio │ ├── Makefile │ ├── music │ │ ├── Makefile │ │ ├── music.c │ │ └── music.h │ ├── musicsfx │ │ ├── Makefile │ │ ├── musicsfx.c │ │ └── musicsfx.h │ └── simplesound │ │ ├── Makefile │ │ ├── ssound.c │ │ └── ssound.h ├── games │ ├── Makefile │ ├── bunny │ │ ├── Makefile │ │ ├── anim.s │ │ ├── bunny.c │ │ ├── bunny.h │ │ ├── dcode.s │ │ ├── grafx.c │ │ ├── levels.c │ │ ├── music.s │ │ ├── setsprit.s │ │ └── sounds.c │ ├── cosmoc │ │ ├── Makefile │ │ ├── collisio.s │ │ ├── cosmoc.c │ │ ├── cosmoc.h │ │ ├── sounds.c │ │ ├── tables.c │ │ └── vdpex.s │ └── diamond │ │ ├── Makefile │ │ ├── dash.c │ │ ├── dash.h │ │ ├── diamond.c │ │ ├── diamond.h │ │ ├── gfxs.c │ │ ├── gfxs.h │ │ ├── snds.c │ │ └── snds.h ├── graphics │ ├── Makefile │ ├── backgrounds │ │ ├── Makefile │ │ ├── dan2compress │ │ │ ├── Makefile │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ ├── grafdan2comp.c │ │ │ ├── grafdan2comp.h │ │ │ └── ourvision.png │ │ ├── dan3compress │ │ │ ├── Makefile │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ ├── grafdan3comp.c │ │ │ ├── grafdan3comp.h │ │ │ └── ourvision.png │ │ ├── dancompress │ │ │ ├── Makefile │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ ├── grafdancomp.c │ │ │ ├── grafdancomp.h │ │ │ └── ourvision.png │ │ ├── mode1plecompress │ │ │ ├── Makefile │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ ├── mode1plecompress.c │ │ │ ├── mode1plecompress.h │ │ │ └── ourvision.png │ │ ├── notcompress │ │ │ ├── Makefile │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ ├── grafnocomp.c │ │ │ ├── grafnocomp.h │ │ │ └── ourvision.png │ │ ├── plecompress │ │ │ ├── Makefile │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ ├── grafplecomp.c │ │ │ ├── grafplecomp.h │ │ │ └── ourvision.png │ │ └── rlecompress │ │ │ ├── Makefile │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ ├── grafrlecomp.c │ │ │ ├── grafrlecomp.h │ │ │ └── ourvision.png │ ├── f18a │ │ ├── Makefile │ │ ├── f18abitmap1 │ │ │ ├── Makefile │ │ │ ├── andygreen.png │ │ │ ├── f18abitmap1.c │ │ │ ├── f18abitmap1.h │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ └── ourvision.png │ │ ├── f18aecm3 │ │ │ ├── Makefile │ │ │ ├── f18aecm3.c │ │ │ ├── f18aecm3.h │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ └── ourvision.png │ │ ├── f18apal │ │ │ ├── Makefile │ │ │ ├── f18apal.c │ │ │ ├── f18apal.h │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ └── ourvision.png │ │ ├── f18ascroll │ │ │ ├── Makefile │ │ │ ├── f18ascroll.c │ │ │ ├── f18ascroll.h │ │ │ ├── gfxs.c │ │ │ ├── gfxs.h │ │ │ └── ourvision.png │ │ └── f18atest │ │ │ ├── Makefile │ │ │ ├── f18atest.c │ │ │ └── f18atest.h │ └── sprites │ │ ├── Makefile │ │ ├── animatedsprite │ │ ├── Makefile │ │ ├── animatedsprite.c │ │ ├── animatedsprite.h │ │ ├── gfxs.c │ │ ├── gfxs.h │ │ └── pacsprite.png │ │ └── simplesprite │ │ ├── Makefile │ │ ├── gfxs.c │ │ ├── gfxs.h │ │ ├── pacsprite.png │ │ ├── simplesprite.c │ │ └── simplesprite.h ├── helloworld │ ├── Makefile │ ├── helloworld.c │ └── helloworld.h ├── input │ ├── Makefile │ ├── input.c │ └── input.h ├── megacart │ ├── Image3.png │ ├── Makefile │ ├── gfxsb1.c │ ├── gfxsb1.h │ ├── gfxsb2.c │ ├── gfxsb2.h │ ├── gfxsb3.c │ ├── gfxsb3.h │ ├── image1.png │ ├── image2.png │ ├── megacart.c │ └── megacart.h ├── palntsc │ ├── Makefile │ ├── palntsc.c │ └── palntsc.h ├── random │ ├── Makefile │ ├── randvalue.c │ └── randvalue.h ├── scoring │ ├── Makefile │ ├── scoring.c │ └── scoring.h └── sgm │ └── sgmtest │ ├── Makefile │ ├── sgmtest.c │ └── sgmtest.h ├── devkitcol ├── bin │ ├── makebin.exe │ ├── packihx.exe │ ├── readline5.dll │ ├── sdar.exe │ ├── sdasz80.exe │ ├── sdcc.exe │ ├── sdcclib.exe │ ├── sdcpp.exe │ ├── sdldz80.exe │ └── sdobjcopy.exe ├── col_rules ├── include │ ├── asm │ │ ├── default │ │ │ └── features.h │ │ └── z80 │ │ │ └── features.h │ ├── assert.h │ ├── ctype.h │ ├── ds80c390.h │ ├── errno.h │ ├── float.h │ ├── iso646.h │ ├── limits.h │ ├── math.h │ ├── sdcc-lib.h │ ├── setjmp.h │ ├── stdalign.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── stdnoreturn.h │ ├── string.h │ ├── time.h │ ├── tinibios.h │ ├── typeof.h │ ├── uchar.h │ └── wchar.h ├── lib │ └── z80 │ │ └── z80.lib ├── readme.txt ├── sdccCOPYING.txt ├── sdccCOPYING3.txt └── sdccREADME.txt ├── docs ├── docs.css └── pvcollib.dox ├── emulators ├── emultwo │ ├── emultwo.exe │ └── readme.txt └── put_emulators_here.txt ├── pvcollib ├── Makefile ├── docs │ ├── Thumbs.db │ ├── dox_extra.css │ ├── dox_footer.html │ ├── dox_header.html │ ├── pvcicon.png │ └── pvcollib.dox ├── include │ ├── coleco.h │ └── coleco │ │ ├── coltypes.h │ │ ├── console.h │ │ ├── f18a.h │ │ ├── libversion.h │ │ ├── pad.h │ │ ├── phoenix.h │ │ ├── score.h │ │ ├── sgm.h │ │ ├── sound.h │ │ ├── sprite.h │ │ └── video.h ├── pvcollib_license.txt └── source │ ├── Makefile │ ├── console.s │ ├── console1.s │ ├── console1_1.s │ ├── console2.s │ ├── console3.s │ ├── console4.s │ ├── console5.s │ ├── console5_1.s │ ├── console6.s │ ├── console7.s │ ├── crtcol.s │ ├── pad.s │ ├── score.s │ ├── score1.s │ ├── score2.s │ ├── score3.s │ ├── score4.s │ ├── sound.s │ ├── sound0.s │ ├── sound1.s │ ├── sound2.s │ ├── sound3.s │ ├── sound4.s │ ├── sprite.s │ ├── sprite1.s │ ├── sprite2.s │ ├── sprite3.s │ ├── sprite4.s │ ├── sprite5.s │ ├── sprite6.s │ ├── sprite7.s │ ├── sprite8.s │ ├── video.s │ ├── video1.s │ ├── video10.s │ ├── video11.s │ ├── video11_1.s │ ├── video12.s │ ├── video13.s │ ├── video13_1.s │ ├── video14.s │ ├── video15.s │ ├── video16.s │ ├── video17.s │ ├── video18.s │ ├── video19.s │ ├── video1_1.s │ ├── video1_2.s │ ├── video2.s │ ├── video20.s │ ├── video21.s │ ├── video22.s │ ├── video23.s │ ├── video24.s │ ├── video25.s │ ├── video26.s │ ├── video27.s │ ├── video28.s │ ├── video29.s │ ├── video3.s │ ├── video3_1.s │ ├── video4.s │ ├── video5.s │ ├── video6.s │ ├── video7.s │ ├── video8.s │ └── video9.s ├── pvcollib_logo.gal ├── pvcollib_logo.png ├── tools ├── Makefile ├── bin2txt │ ├── CMakeLists.txt │ ├── Makefile │ ├── bin2txt.c │ ├── bin2txt.pnproj │ ├── bin2txt.pnps │ ├── config.h.in │ └── readme.md ├── cvmkcart │ ├── CMakeLists.txt │ ├── Makefile │ ├── config.h.in │ ├── cvmkcart.c │ ├── cvmkcart.pnproj │ └── cvmkcart.pnps └── gfx2col │ ├── CMakeLists.txt │ ├── Makefile │ ├── compdan1.c │ ├── compdan1.h │ ├── compdan2.c │ ├── compdan2.h │ ├── compdan3.c │ ├── compdan3.h │ ├── comprle.c │ ├── comprle.h │ ├── comptool.c │ ├── comptool.h │ ├── config.h.in │ ├── gfx2col.c │ ├── gfx2col.h │ ├── gfx2col.pnproj │ ├── gfx2col.pnps │ ├── lodepic.c │ ├── lodepic.h │ ├── lodepng.c │ ├── lodepng.h │ └── readme.md └── wiki ├── colecospecs.md ├── home.md ├── instwindow.md ├── programnotpad.md └── sidebar.md /.github/workflows/pvcollib_doc_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/.github/workflows/pvcollib_doc_package.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/README.md -------------------------------------------------------------------------------- /bin/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/cp.exe -------------------------------------------------------------------------------- /bin/echo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/echo.exe -------------------------------------------------------------------------------- /bin/find.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/find.exe -------------------------------------------------------------------------------- /bin/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/grep.exe -------------------------------------------------------------------------------- /bin/make.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/make.exe -------------------------------------------------------------------------------- /bin/mkdir.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/mkdir.exe -------------------------------------------------------------------------------- /bin/msys-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/msys-1.0.dll -------------------------------------------------------------------------------- /bin/msys-iconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/msys-iconv-2.dll -------------------------------------------------------------------------------- /bin/msys-intl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/msys-intl-8.dll -------------------------------------------------------------------------------- /bin/msys-regex-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/msys-regex-1.dll -------------------------------------------------------------------------------- /bin/msys-termcap-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/msys-termcap-0.dll -------------------------------------------------------------------------------- /bin/mv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/mv.exe -------------------------------------------------------------------------------- /bin/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/rm.exe -------------------------------------------------------------------------------- /bin/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/sed.exe -------------------------------------------------------------------------------- /bin/sh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/bin/sh.exe -------------------------------------------------------------------------------- /coleco-examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/Makefile -------------------------------------------------------------------------------- /coleco-examples/audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/Makefile -------------------------------------------------------------------------------- /coleco-examples/audio/music/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/music/Makefile -------------------------------------------------------------------------------- /coleco-examples/audio/music/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/music/music.c -------------------------------------------------------------------------------- /coleco-examples/audio/music/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/music/music.h -------------------------------------------------------------------------------- /coleco-examples/audio/musicsfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/musicsfx/Makefile -------------------------------------------------------------------------------- /coleco-examples/audio/musicsfx/musicsfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/musicsfx/musicsfx.c -------------------------------------------------------------------------------- /coleco-examples/audio/musicsfx/musicsfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/musicsfx/musicsfx.h -------------------------------------------------------------------------------- /coleco-examples/audio/simplesound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/simplesound/Makefile -------------------------------------------------------------------------------- /coleco-examples/audio/simplesound/ssound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/simplesound/ssound.c -------------------------------------------------------------------------------- /coleco-examples/audio/simplesound/ssound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/audio/simplesound/ssound.h -------------------------------------------------------------------------------- /coleco-examples/games/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/Makefile -------------------------------------------------------------------------------- /coleco-examples/games/bunny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/Makefile -------------------------------------------------------------------------------- /coleco-examples/games/bunny/anim.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/anim.s -------------------------------------------------------------------------------- /coleco-examples/games/bunny/bunny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/bunny.c -------------------------------------------------------------------------------- /coleco-examples/games/bunny/bunny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/bunny.h -------------------------------------------------------------------------------- /coleco-examples/games/bunny/dcode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/dcode.s -------------------------------------------------------------------------------- /coleco-examples/games/bunny/grafx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/grafx.c -------------------------------------------------------------------------------- /coleco-examples/games/bunny/levels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/levels.c -------------------------------------------------------------------------------- /coleco-examples/games/bunny/music.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/music.s -------------------------------------------------------------------------------- /coleco-examples/games/bunny/setsprit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/setsprit.s -------------------------------------------------------------------------------- /coleco-examples/games/bunny/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/bunny/sounds.c -------------------------------------------------------------------------------- /coleco-examples/games/cosmoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/cosmoc/Makefile -------------------------------------------------------------------------------- /coleco-examples/games/cosmoc/collisio.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/cosmoc/collisio.s -------------------------------------------------------------------------------- /coleco-examples/games/cosmoc/cosmoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/cosmoc/cosmoc.c -------------------------------------------------------------------------------- /coleco-examples/games/cosmoc/cosmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/cosmoc/cosmoc.h -------------------------------------------------------------------------------- /coleco-examples/games/cosmoc/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/cosmoc/sounds.c -------------------------------------------------------------------------------- /coleco-examples/games/cosmoc/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/cosmoc/tables.c -------------------------------------------------------------------------------- /coleco-examples/games/cosmoc/vdpex.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/cosmoc/vdpex.s -------------------------------------------------------------------------------- /coleco-examples/games/diamond/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/Makefile -------------------------------------------------------------------------------- /coleco-examples/games/diamond/dash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/dash.c -------------------------------------------------------------------------------- /coleco-examples/games/diamond/dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/dash.h -------------------------------------------------------------------------------- /coleco-examples/games/diamond/diamond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/diamond.c -------------------------------------------------------------------------------- /coleco-examples/games/diamond/diamond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/diamond.h -------------------------------------------------------------------------------- /coleco-examples/games/diamond/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/games/diamond/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/games/diamond/snds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/snds.c -------------------------------------------------------------------------------- /coleco-examples/games/diamond/snds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/games/diamond/snds.h -------------------------------------------------------------------------------- /coleco-examples/graphics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan2compress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan2compress/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan2compress/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan2compress/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan2compress/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan2compress/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan2compress/grafdan2comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan2compress/grafdan2comp.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan2compress/grafdan2comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan2compress/grafdan2comp.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan2compress/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan2compress/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan3compress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan3compress/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan3compress/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan3compress/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan3compress/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan3compress/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan3compress/grafdan3comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan3compress/grafdan3comp.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan3compress/grafdan3comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan3compress/grafdan3comp.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dan3compress/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dan3compress/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dancompress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dancompress/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dancompress/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dancompress/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dancompress/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dancompress/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dancompress/grafdancomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dancompress/grafdancomp.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dancompress/grafdancomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dancompress/grafdancomp.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/dancompress/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/dancompress/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/mode1plecompress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/mode1plecompress/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/mode1plecompress/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/mode1plecompress/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/mode1plecompress/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/mode1plecompress/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/mode1plecompress/mode1plecompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/mode1plecompress/mode1plecompress.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/mode1plecompress/mode1plecompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/mode1plecompress/mode1plecompress.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/mode1plecompress/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/mode1plecompress/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/notcompress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/notcompress/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/notcompress/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/notcompress/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/notcompress/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/notcompress/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/notcompress/grafnocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/notcompress/grafnocomp.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/notcompress/grafnocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/notcompress/grafnocomp.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/notcompress/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/notcompress/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/plecompress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/plecompress/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/plecompress/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/plecompress/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/plecompress/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/plecompress/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/plecompress/grafplecomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/plecompress/grafplecomp.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/plecompress/grafplecomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/plecompress/grafplecomp.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/plecompress/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/plecompress/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/rlecompress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/rlecompress/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/rlecompress/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/rlecompress/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/rlecompress/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/rlecompress/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/rlecompress/grafrlecomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/rlecompress/grafrlecomp.c -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/rlecompress/grafrlecomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/rlecompress/grafrlecomp.h -------------------------------------------------------------------------------- /coleco-examples/graphics/backgrounds/rlecompress/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/backgrounds/rlecompress/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18abitmap1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18abitmap1/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18abitmap1/andygreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18abitmap1/andygreen.png -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18abitmap1/f18abitmap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18abitmap1/f18abitmap1.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18abitmap1/f18abitmap1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18abitmap1/f18abitmap1.h -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18abitmap1/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18abitmap1/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18abitmap1/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18abitmap1/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18abitmap1/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18abitmap1/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18aecm3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18aecm3/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18aecm3/f18aecm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18aecm3/f18aecm3.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18aecm3/f18aecm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18aecm3/f18aecm3.h -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18aecm3/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18aecm3/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18aecm3/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18aecm3/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18aecm3/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18aecm3/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18apal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18apal/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18apal/f18apal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18apal/f18apal.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18apal/f18apal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18apal/f18apal.h -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18apal/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18apal/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18apal/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18apal/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18apal/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18apal/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18ascroll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18ascroll/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18ascroll/f18ascroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18ascroll/f18ascroll.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18ascroll/f18ascroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18ascroll/f18ascroll.h -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18ascroll/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18ascroll/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18ascroll/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18ascroll/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18ascroll/ourvision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18ascroll/ourvision.png -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18atest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18atest/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18atest/f18atest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18atest/f18atest.c -------------------------------------------------------------------------------- /coleco-examples/graphics/f18a/f18atest/f18atest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/f18a/f18atest/f18atest.h -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/animatedsprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/animatedsprite/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/animatedsprite/animatedsprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/animatedsprite/animatedsprite.c -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/animatedsprite/animatedsprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/animatedsprite/animatedsprite.h -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/animatedsprite/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/animatedsprite/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/animatedsprite/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/animatedsprite/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/animatedsprite/pacsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/animatedsprite/pacsprite.png -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/simplesprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/simplesprite/Makefile -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/simplesprite/gfxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/simplesprite/gfxs.c -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/simplesprite/gfxs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/simplesprite/gfxs.h -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/simplesprite/pacsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/simplesprite/pacsprite.png -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/simplesprite/simplesprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/simplesprite/simplesprite.c -------------------------------------------------------------------------------- /coleco-examples/graphics/sprites/simplesprite/simplesprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/graphics/sprites/simplesprite/simplesprite.h -------------------------------------------------------------------------------- /coleco-examples/helloworld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/helloworld/Makefile -------------------------------------------------------------------------------- /coleco-examples/helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/helloworld/helloworld.c -------------------------------------------------------------------------------- /coleco-examples/helloworld/helloworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/helloworld/helloworld.h -------------------------------------------------------------------------------- /coleco-examples/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/input/Makefile -------------------------------------------------------------------------------- /coleco-examples/input/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/input/input.c -------------------------------------------------------------------------------- /coleco-examples/input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/input/input.h -------------------------------------------------------------------------------- /coleco-examples/megacart/Image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/Image3.png -------------------------------------------------------------------------------- /coleco-examples/megacart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/Makefile -------------------------------------------------------------------------------- /coleco-examples/megacart/gfxsb1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/gfxsb1.c -------------------------------------------------------------------------------- /coleco-examples/megacart/gfxsb1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/gfxsb1.h -------------------------------------------------------------------------------- /coleco-examples/megacart/gfxsb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/gfxsb2.c -------------------------------------------------------------------------------- /coleco-examples/megacart/gfxsb2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/gfxsb2.h -------------------------------------------------------------------------------- /coleco-examples/megacart/gfxsb3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/gfxsb3.c -------------------------------------------------------------------------------- /coleco-examples/megacart/gfxsb3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/gfxsb3.h -------------------------------------------------------------------------------- /coleco-examples/megacart/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/image1.png -------------------------------------------------------------------------------- /coleco-examples/megacart/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/image2.png -------------------------------------------------------------------------------- /coleco-examples/megacart/megacart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/megacart.c -------------------------------------------------------------------------------- /coleco-examples/megacart/megacart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/megacart/megacart.h -------------------------------------------------------------------------------- /coleco-examples/palntsc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/palntsc/Makefile -------------------------------------------------------------------------------- /coleco-examples/palntsc/palntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/palntsc/palntsc.c -------------------------------------------------------------------------------- /coleco-examples/palntsc/palntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/palntsc/palntsc.h -------------------------------------------------------------------------------- /coleco-examples/random/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/random/Makefile -------------------------------------------------------------------------------- /coleco-examples/random/randvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/random/randvalue.c -------------------------------------------------------------------------------- /coleco-examples/random/randvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/random/randvalue.h -------------------------------------------------------------------------------- /coleco-examples/scoring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/scoring/Makefile -------------------------------------------------------------------------------- /coleco-examples/scoring/scoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/scoring/scoring.c -------------------------------------------------------------------------------- /coleco-examples/scoring/scoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/scoring/scoring.h -------------------------------------------------------------------------------- /coleco-examples/sgm/sgmtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/sgm/sgmtest/Makefile -------------------------------------------------------------------------------- /coleco-examples/sgm/sgmtest/sgmtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/sgm/sgmtest/sgmtest.c -------------------------------------------------------------------------------- /coleco-examples/sgm/sgmtest/sgmtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/coleco-examples/sgm/sgmtest/sgmtest.h -------------------------------------------------------------------------------- /devkitcol/bin/makebin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/makebin.exe -------------------------------------------------------------------------------- /devkitcol/bin/packihx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/packihx.exe -------------------------------------------------------------------------------- /devkitcol/bin/readline5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/readline5.dll -------------------------------------------------------------------------------- /devkitcol/bin/sdar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/sdar.exe -------------------------------------------------------------------------------- /devkitcol/bin/sdasz80.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/sdasz80.exe -------------------------------------------------------------------------------- /devkitcol/bin/sdcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/sdcc.exe -------------------------------------------------------------------------------- /devkitcol/bin/sdcclib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/sdcclib.exe -------------------------------------------------------------------------------- /devkitcol/bin/sdcpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/sdcpp.exe -------------------------------------------------------------------------------- /devkitcol/bin/sdldz80.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/sdldz80.exe -------------------------------------------------------------------------------- /devkitcol/bin/sdobjcopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/bin/sdobjcopy.exe -------------------------------------------------------------------------------- /devkitcol/col_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/col_rules -------------------------------------------------------------------------------- /devkitcol/include/asm/default/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/asm/default/features.h -------------------------------------------------------------------------------- /devkitcol/include/asm/z80/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/asm/z80/features.h -------------------------------------------------------------------------------- /devkitcol/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/assert.h -------------------------------------------------------------------------------- /devkitcol/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/ctype.h -------------------------------------------------------------------------------- /devkitcol/include/ds80c390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/ds80c390.h -------------------------------------------------------------------------------- /devkitcol/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/errno.h -------------------------------------------------------------------------------- /devkitcol/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/float.h -------------------------------------------------------------------------------- /devkitcol/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/iso646.h -------------------------------------------------------------------------------- /devkitcol/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/limits.h -------------------------------------------------------------------------------- /devkitcol/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/math.h -------------------------------------------------------------------------------- /devkitcol/include/sdcc-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/sdcc-lib.h -------------------------------------------------------------------------------- /devkitcol/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/setjmp.h -------------------------------------------------------------------------------- /devkitcol/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/stdalign.h -------------------------------------------------------------------------------- /devkitcol/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/stdarg.h -------------------------------------------------------------------------------- /devkitcol/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/stdbool.h -------------------------------------------------------------------------------- /devkitcol/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/stddef.h -------------------------------------------------------------------------------- /devkitcol/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/stdint.h -------------------------------------------------------------------------------- /devkitcol/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/stdio.h -------------------------------------------------------------------------------- /devkitcol/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/stdlib.h -------------------------------------------------------------------------------- /devkitcol/include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/stdnoreturn.h -------------------------------------------------------------------------------- /devkitcol/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/string.h -------------------------------------------------------------------------------- /devkitcol/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/time.h -------------------------------------------------------------------------------- /devkitcol/include/tinibios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/tinibios.h -------------------------------------------------------------------------------- /devkitcol/include/typeof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/typeof.h -------------------------------------------------------------------------------- /devkitcol/include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/uchar.h -------------------------------------------------------------------------------- /devkitcol/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/include/wchar.h -------------------------------------------------------------------------------- /devkitcol/lib/z80/z80.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/lib/z80/z80.lib -------------------------------------------------------------------------------- /devkitcol/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/readme.txt -------------------------------------------------------------------------------- /devkitcol/sdccCOPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/sdccCOPYING.txt -------------------------------------------------------------------------------- /devkitcol/sdccCOPYING3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/sdccCOPYING3.txt -------------------------------------------------------------------------------- /devkitcol/sdccREADME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/devkitcol/sdccREADME.txt -------------------------------------------------------------------------------- /docs/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/docs/docs.css -------------------------------------------------------------------------------- /docs/pvcollib.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/docs/pvcollib.dox -------------------------------------------------------------------------------- /emulators/emultwo/emultwo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/emulators/emultwo/emultwo.exe -------------------------------------------------------------------------------- /emulators/emultwo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/emulators/emultwo/readme.txt -------------------------------------------------------------------------------- /emulators/put_emulators_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pvcollib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/Makefile -------------------------------------------------------------------------------- /pvcollib/docs/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/docs/Thumbs.db -------------------------------------------------------------------------------- /pvcollib/docs/dox_extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/docs/dox_extra.css -------------------------------------------------------------------------------- /pvcollib/docs/dox_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/docs/dox_footer.html -------------------------------------------------------------------------------- /pvcollib/docs/dox_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/docs/dox_header.html -------------------------------------------------------------------------------- /pvcollib/docs/pvcicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/docs/pvcicon.png -------------------------------------------------------------------------------- /pvcollib/docs/pvcollib.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/docs/pvcollib.dox -------------------------------------------------------------------------------- /pvcollib/include/coleco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/coltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/coltypes.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/console.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/f18a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/f18a.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/libversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/libversion.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/pad.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/phoenix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/phoenix.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/score.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/sgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/sgm.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/sound.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/sprite.h -------------------------------------------------------------------------------- /pvcollib/include/coleco/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/include/coleco/video.h -------------------------------------------------------------------------------- /pvcollib/pvcollib_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/pvcollib_license.txt -------------------------------------------------------------------------------- /pvcollib/source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/Makefile -------------------------------------------------------------------------------- /pvcollib/source/console.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console.s -------------------------------------------------------------------------------- /pvcollib/source/console1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console1.s -------------------------------------------------------------------------------- /pvcollib/source/console1_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console1_1.s -------------------------------------------------------------------------------- /pvcollib/source/console2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console2.s -------------------------------------------------------------------------------- /pvcollib/source/console3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console3.s -------------------------------------------------------------------------------- /pvcollib/source/console4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console4.s -------------------------------------------------------------------------------- /pvcollib/source/console5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console5.s -------------------------------------------------------------------------------- /pvcollib/source/console5_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console5_1.s -------------------------------------------------------------------------------- /pvcollib/source/console6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console6.s -------------------------------------------------------------------------------- /pvcollib/source/console7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/console7.s -------------------------------------------------------------------------------- /pvcollib/source/crtcol.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/crtcol.s -------------------------------------------------------------------------------- /pvcollib/source/pad.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/pad.s -------------------------------------------------------------------------------- /pvcollib/source/score.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/score.s -------------------------------------------------------------------------------- /pvcollib/source/score1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/score1.s -------------------------------------------------------------------------------- /pvcollib/source/score2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/score2.s -------------------------------------------------------------------------------- /pvcollib/source/score3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/score3.s -------------------------------------------------------------------------------- /pvcollib/source/score4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/score4.s -------------------------------------------------------------------------------- /pvcollib/source/sound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sound.s -------------------------------------------------------------------------------- /pvcollib/source/sound0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sound0.s -------------------------------------------------------------------------------- /pvcollib/source/sound1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sound1.s -------------------------------------------------------------------------------- /pvcollib/source/sound2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sound2.s -------------------------------------------------------------------------------- /pvcollib/source/sound3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sound3.s -------------------------------------------------------------------------------- /pvcollib/source/sound4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sound4.s -------------------------------------------------------------------------------- /pvcollib/source/sprite.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite.s -------------------------------------------------------------------------------- /pvcollib/source/sprite1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite1.s -------------------------------------------------------------------------------- /pvcollib/source/sprite2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite2.s -------------------------------------------------------------------------------- /pvcollib/source/sprite3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite3.s -------------------------------------------------------------------------------- /pvcollib/source/sprite4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite4.s -------------------------------------------------------------------------------- /pvcollib/source/sprite5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite5.s -------------------------------------------------------------------------------- /pvcollib/source/sprite6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite6.s -------------------------------------------------------------------------------- /pvcollib/source/sprite7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite7.s -------------------------------------------------------------------------------- /pvcollib/source/sprite8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/sprite8.s -------------------------------------------------------------------------------- /pvcollib/source/video.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video.s -------------------------------------------------------------------------------- /pvcollib/source/video1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video1.s -------------------------------------------------------------------------------- /pvcollib/source/video10.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video10.s -------------------------------------------------------------------------------- /pvcollib/source/video11.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video11.s -------------------------------------------------------------------------------- /pvcollib/source/video11_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video11_1.s -------------------------------------------------------------------------------- /pvcollib/source/video12.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video12.s -------------------------------------------------------------------------------- /pvcollib/source/video13.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video13.s -------------------------------------------------------------------------------- /pvcollib/source/video13_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video13_1.s -------------------------------------------------------------------------------- /pvcollib/source/video14.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video14.s -------------------------------------------------------------------------------- /pvcollib/source/video15.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video15.s -------------------------------------------------------------------------------- /pvcollib/source/video16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video16.s -------------------------------------------------------------------------------- /pvcollib/source/video17.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video17.s -------------------------------------------------------------------------------- /pvcollib/source/video18.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video18.s -------------------------------------------------------------------------------- /pvcollib/source/video19.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video19.s -------------------------------------------------------------------------------- /pvcollib/source/video1_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video1_1.s -------------------------------------------------------------------------------- /pvcollib/source/video1_2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video1_2.s -------------------------------------------------------------------------------- /pvcollib/source/video2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video2.s -------------------------------------------------------------------------------- /pvcollib/source/video20.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video20.s -------------------------------------------------------------------------------- /pvcollib/source/video21.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video21.s -------------------------------------------------------------------------------- /pvcollib/source/video22.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video22.s -------------------------------------------------------------------------------- /pvcollib/source/video23.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video23.s -------------------------------------------------------------------------------- /pvcollib/source/video24.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video24.s -------------------------------------------------------------------------------- /pvcollib/source/video25.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video25.s -------------------------------------------------------------------------------- /pvcollib/source/video26.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video26.s -------------------------------------------------------------------------------- /pvcollib/source/video27.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video27.s -------------------------------------------------------------------------------- /pvcollib/source/video28.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video28.s -------------------------------------------------------------------------------- /pvcollib/source/video29.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video29.s -------------------------------------------------------------------------------- /pvcollib/source/video3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video3.s -------------------------------------------------------------------------------- /pvcollib/source/video3_1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video3_1.s -------------------------------------------------------------------------------- /pvcollib/source/video4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video4.s -------------------------------------------------------------------------------- /pvcollib/source/video5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video5.s -------------------------------------------------------------------------------- /pvcollib/source/video6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video6.s -------------------------------------------------------------------------------- /pvcollib/source/video7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video7.s -------------------------------------------------------------------------------- /pvcollib/source/video8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video8.s -------------------------------------------------------------------------------- /pvcollib/source/video9.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib/source/video9.s -------------------------------------------------------------------------------- /pvcollib_logo.gal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib_logo.gal -------------------------------------------------------------------------------- /pvcollib_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/pvcollib_logo.png -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/bin2txt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/bin2txt/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bin2txt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/bin2txt/Makefile -------------------------------------------------------------------------------- /tools/bin2txt/bin2txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/bin2txt/bin2txt.c -------------------------------------------------------------------------------- /tools/bin2txt/bin2txt.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/bin2txt/bin2txt.pnproj -------------------------------------------------------------------------------- /tools/bin2txt/bin2txt.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/bin2txt/bin2txt.pnps -------------------------------------------------------------------------------- /tools/bin2txt/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/bin2txt/config.h.in -------------------------------------------------------------------------------- /tools/bin2txt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/bin2txt/readme.md -------------------------------------------------------------------------------- /tools/cvmkcart/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/cvmkcart/CMakeLists.txt -------------------------------------------------------------------------------- /tools/cvmkcart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/cvmkcart/Makefile -------------------------------------------------------------------------------- /tools/cvmkcart/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/cvmkcart/config.h.in -------------------------------------------------------------------------------- /tools/cvmkcart/cvmkcart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/cvmkcart/cvmkcart.c -------------------------------------------------------------------------------- /tools/cvmkcart/cvmkcart.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/cvmkcart/cvmkcart.pnproj -------------------------------------------------------------------------------- /tools/cvmkcart/cvmkcart.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/cvmkcart/cvmkcart.pnps -------------------------------------------------------------------------------- /tools/gfx2col/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/CMakeLists.txt -------------------------------------------------------------------------------- /tools/gfx2col/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/Makefile -------------------------------------------------------------------------------- /tools/gfx2col/compdan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/compdan1.c -------------------------------------------------------------------------------- /tools/gfx2col/compdan1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/compdan1.h -------------------------------------------------------------------------------- /tools/gfx2col/compdan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/compdan2.c -------------------------------------------------------------------------------- /tools/gfx2col/compdan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/compdan2.h -------------------------------------------------------------------------------- /tools/gfx2col/compdan3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/compdan3.c -------------------------------------------------------------------------------- /tools/gfx2col/compdan3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/compdan3.h -------------------------------------------------------------------------------- /tools/gfx2col/comprle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/comprle.c -------------------------------------------------------------------------------- /tools/gfx2col/comprle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/comprle.h -------------------------------------------------------------------------------- /tools/gfx2col/comptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/comptool.c -------------------------------------------------------------------------------- /tools/gfx2col/comptool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/comptool.h -------------------------------------------------------------------------------- /tools/gfx2col/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/config.h.in -------------------------------------------------------------------------------- /tools/gfx2col/gfx2col.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/gfx2col.c -------------------------------------------------------------------------------- /tools/gfx2col/gfx2col.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/gfx2col.h -------------------------------------------------------------------------------- /tools/gfx2col/gfx2col.pnproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/gfx2col.pnproj -------------------------------------------------------------------------------- /tools/gfx2col/gfx2col.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/gfx2col.pnps -------------------------------------------------------------------------------- /tools/gfx2col/lodepic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/lodepic.c -------------------------------------------------------------------------------- /tools/gfx2col/lodepic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/lodepic.h -------------------------------------------------------------------------------- /tools/gfx2col/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/lodepng.c -------------------------------------------------------------------------------- /tools/gfx2col/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/lodepng.h -------------------------------------------------------------------------------- /tools/gfx2col/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/tools/gfx2col/readme.md -------------------------------------------------------------------------------- /wiki/colecospecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/wiki/colecospecs.md -------------------------------------------------------------------------------- /wiki/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/wiki/home.md -------------------------------------------------------------------------------- /wiki/instwindow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/wiki/instwindow.md -------------------------------------------------------------------------------- /wiki/programnotpad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/wiki/programnotpad.md -------------------------------------------------------------------------------- /wiki/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekmaul/pvcollib/HEAD/wiki/sidebar.md --------------------------------------------------------------------------------