├── .gitattributes ├── .gitignore ├── .vs ├── GET_PAL │ └── v16 │ │ └── .suo ├── NES │ └── v16 │ │ └── .suo └── PRISM_NES │ └── v16 │ └── .suo ├── App.config ├── Compress.cs ├── DZ4 ├── DZ4.asm ├── DZ4.exe └── Readme2.txt ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── GET_PAL.csproj ├── GET_PAL.sln ├── Images ├── 1color.png ├── 2color.png ├── 3color.png ├── 4color.png ├── Anime.png ├── Chrysanthemum.jpg ├── Cute_dog128_128.png ├── Cute_dog256_240.png ├── Lights.png ├── Piano256.png ├── Simcity.png ├── Small.png ├── Small2.png ├── Smooth (FBX).pal ├── Smooth FBX.txt ├── Transparent.png ├── Tulips.jpg ├── apple16.png ├── apple2.jpg ├── blues.jpg ├── linear_gradient.png ├── parrot.jpg ├── parrot2.jpg ├── parrot4.jpg ├── rainbow.jpg ├── smoothfbx.png ├── smoothfbx2.png ├── test.chr ├── test.nam ├── test.pal ├── test2.png ├── test3.png ├── test4.png ├── test5.png └── test6.png ├── License.txt ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Readme.txt ├── Resource1.Designer.cs ├── Resource1.resx ├── Where_Prism.txt ├── bin └── Release │ ├── GET_PAL.exe │ ├── GET_PAL.exe.config │ └── GET_PAL.pdb ├── obj └── Release │ ├── .NETFramework,Version=v4.5.2.AssemblyAttributes.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GET_PAL.Form1.resources │ ├── GET_PAL.Properties.Resources.resources │ ├── GET_PAL.Resource1.resources │ ├── GET_PAL.csproj.CoreCompileInputs.cache │ ├── GET_PAL.csproj.FileListAbsolute.txt │ ├── GET_PAL.csproj.GenerateResource.cache │ ├── GET_PAL.csprojAssemblyReference.cache │ ├── GET_PAL.exe │ ├── GET_PAL.pdb │ └── TempPE │ ├── Properties.Resources.Designer.cs.dll │ └── Resource1.Designer.cs.dll └── snaps ├── Adventure Island 3 (USA)-0.png ├── Adventures in the Magic Kingdom (USA)-0.png ├── Adventures of Lolo 3 (USA)-0.png ├── Back to the Future (USA)-0.png ├── Batman - Return of the Joker (USA)-0.png ├── Bomberman II (USA)-0.png ├── DuckTales (USA)-0.png ├── DuckTales (USA)-1.png ├── DuckTales (USA)-2.png ├── Mega Man 6 (USA)-0.png ├── Moon Crystal (Japan)-0.png ├── Ninja Gaiden II - The Dark Sword of Chaos (USA)-0.png ├── Super Mario Bros. (World)-0.png ├── Tiny Toon Adventures 2 - Trouble in Wackyland (USA)-0.png ├── test.chr ├── test.nam └── test.pal /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/GET_PAL/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/.vs/GET_PAL/v16/.suo -------------------------------------------------------------------------------- /.vs/NES/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/.vs/NES/v16/.suo -------------------------------------------------------------------------------- /.vs/PRISM_NES/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/.vs/PRISM_NES/v16/.suo -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/App.config -------------------------------------------------------------------------------- /Compress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Compress.cs -------------------------------------------------------------------------------- /DZ4/DZ4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/DZ4/DZ4.asm -------------------------------------------------------------------------------- /DZ4/DZ4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/DZ4/DZ4.exe -------------------------------------------------------------------------------- /DZ4/Readme2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/DZ4/Readme2.txt -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Form1.resx -------------------------------------------------------------------------------- /GET_PAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/GET_PAL.csproj -------------------------------------------------------------------------------- /GET_PAL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/GET_PAL.sln -------------------------------------------------------------------------------- /Images/1color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/1color.png -------------------------------------------------------------------------------- /Images/2color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/2color.png -------------------------------------------------------------------------------- /Images/3color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/3color.png -------------------------------------------------------------------------------- /Images/4color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/4color.png -------------------------------------------------------------------------------- /Images/Anime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Anime.png -------------------------------------------------------------------------------- /Images/Chrysanthemum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Chrysanthemum.jpg -------------------------------------------------------------------------------- /Images/Cute_dog128_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Cute_dog128_128.png -------------------------------------------------------------------------------- /Images/Cute_dog256_240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Cute_dog256_240.png -------------------------------------------------------------------------------- /Images/Lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Lights.png -------------------------------------------------------------------------------- /Images/Piano256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Piano256.png -------------------------------------------------------------------------------- /Images/Simcity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Simcity.png -------------------------------------------------------------------------------- /Images/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Small.png -------------------------------------------------------------------------------- /Images/Small2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Small2.png -------------------------------------------------------------------------------- /Images/Smooth (FBX).pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Smooth (FBX).pal -------------------------------------------------------------------------------- /Images/Smooth FBX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Smooth FBX.txt -------------------------------------------------------------------------------- /Images/Transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Transparent.png -------------------------------------------------------------------------------- /Images/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/Tulips.jpg -------------------------------------------------------------------------------- /Images/apple16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/apple16.png -------------------------------------------------------------------------------- /Images/apple2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/apple2.jpg -------------------------------------------------------------------------------- /Images/blues.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/blues.jpg -------------------------------------------------------------------------------- /Images/linear_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/linear_gradient.png -------------------------------------------------------------------------------- /Images/parrot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/parrot.jpg -------------------------------------------------------------------------------- /Images/parrot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/parrot2.jpg -------------------------------------------------------------------------------- /Images/parrot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/parrot4.jpg -------------------------------------------------------------------------------- /Images/rainbow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/rainbow.jpg -------------------------------------------------------------------------------- /Images/smoothfbx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/smoothfbx.png -------------------------------------------------------------------------------- /Images/smoothfbx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/smoothfbx2.png -------------------------------------------------------------------------------- /Images/test.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/test.chr -------------------------------------------------------------------------------- /Images/test.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/test.nam -------------------------------------------------------------------------------- /Images/test.pal: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Images/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/test2.png -------------------------------------------------------------------------------- /Images/test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/test3.png -------------------------------------------------------------------------------- /Images/test4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/test4.png -------------------------------------------------------------------------------- /Images/test5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/test5.png -------------------------------------------------------------------------------- /Images/test6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Images/test6.png -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/License.txt -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Readme.txt -------------------------------------------------------------------------------- /Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Resource1.Designer.cs -------------------------------------------------------------------------------- /Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Resource1.resx -------------------------------------------------------------------------------- /Where_Prism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/Where_Prism.txt -------------------------------------------------------------------------------- /bin/Release/GET_PAL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/bin/Release/GET_PAL.exe -------------------------------------------------------------------------------- /bin/Release/GET_PAL.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/bin/Release/GET_PAL.exe.config -------------------------------------------------------------------------------- /bin/Release/GET_PAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/bin/Release/GET_PAL.pdb -------------------------------------------------------------------------------- /obj/Release/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Release/GET_PAL.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/GET_PAL.Form1.resources -------------------------------------------------------------------------------- /obj/Release/GET_PAL.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/GET_PAL.Properties.Resources.resources -------------------------------------------------------------------------------- /obj/Release/GET_PAL.Resource1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/GET_PAL.Resource1.resources -------------------------------------------------------------------------------- /obj/Release/GET_PAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5406ec26b1c3b4747b92c8076c278fd486be0769 2 | -------------------------------------------------------------------------------- /obj/Release/GET_PAL.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/GET_PAL.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Release/GET_PAL.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/GET_PAL.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Release/GET_PAL.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/GET_PAL.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Release/GET_PAL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/GET_PAL.exe -------------------------------------------------------------------------------- /obj/Release/GET_PAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/GET_PAL.pdb -------------------------------------------------------------------------------- /obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /obj/Release/TempPE/Resource1.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/obj/Release/TempPE/Resource1.Designer.cs.dll -------------------------------------------------------------------------------- /snaps/Adventure Island 3 (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Adventure Island 3 (USA)-0.png -------------------------------------------------------------------------------- /snaps/Adventures in the Magic Kingdom (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Adventures in the Magic Kingdom (USA)-0.png -------------------------------------------------------------------------------- /snaps/Adventures of Lolo 3 (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Adventures of Lolo 3 (USA)-0.png -------------------------------------------------------------------------------- /snaps/Back to the Future (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Back to the Future (USA)-0.png -------------------------------------------------------------------------------- /snaps/Batman - Return of the Joker (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Batman - Return of the Joker (USA)-0.png -------------------------------------------------------------------------------- /snaps/Bomberman II (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Bomberman II (USA)-0.png -------------------------------------------------------------------------------- /snaps/DuckTales (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/DuckTales (USA)-0.png -------------------------------------------------------------------------------- /snaps/DuckTales (USA)-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/DuckTales (USA)-1.png -------------------------------------------------------------------------------- /snaps/DuckTales (USA)-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/DuckTales (USA)-2.png -------------------------------------------------------------------------------- /snaps/Mega Man 6 (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Mega Man 6 (USA)-0.png -------------------------------------------------------------------------------- /snaps/Moon Crystal (Japan)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Moon Crystal (Japan)-0.png -------------------------------------------------------------------------------- /snaps/Ninja Gaiden II - The Dark Sword of Chaos (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Ninja Gaiden II - The Dark Sword of Chaos (USA)-0.png -------------------------------------------------------------------------------- /snaps/Super Mario Bros. (World)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Super Mario Bros. (World)-0.png -------------------------------------------------------------------------------- /snaps/Tiny Toon Adventures 2 - Trouble in Wackyland (USA)-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/Tiny Toon Adventures 2 - Trouble in Wackyland (USA)-0.png -------------------------------------------------------------------------------- /snaps/test.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/test.chr -------------------------------------------------------------------------------- /snaps/test.nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/PRISM_NES/HEAD/snaps/test.nam -------------------------------------------------------------------------------- /snaps/test.pal: -------------------------------------------------------------------------------- 1 | 0;0<&6 --------------------------------------------------------------------------------