├── .github └── workflows │ ├── .gitkeep │ └── ccpp.yml ├── BMPtoASMconvertor.sln ├── BMPtoASMconvertor ├── 16color-example.bmp ├── 16color-palette24bit.bmp ├── BMPtoASMconvertor.cpp ├── BMPtoASMconvertor.h ├── BMPtoASMconvertor.vcxproj ├── BMPtoASMconvertor.vcxproj.filters ├── BMPtoASMconvertor.vcxproj.user ├── Color.h ├── Config.h ├── ConfigHandler.h ├── Debug │ ├── BMPtoASM.94CA8001.tlog │ │ ├── BMPtoASMconvertor.lastbuildstate │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── BMPtoASMconvertor.log │ ├── BMPtoASMconvertor.obj │ ├── vc142.idb │ └── vc142.pdb ├── User_Results │ ├── BMPColorASM │ │ └── method 2 results will be stored here.txt │ ├── BMPMonoASM │ │ └── method 3 results will be stored here.txt │ └── TextToASM │ │ └── method 1 results will be stored here.txt ├── cactus_example.bmp ├── cactus_example.txt ├── config.CONFIG └── reader.h ├── ColorAssignments.PNG ├── Debug ├── BMPtoASMconvertor.exe ├── BMPtoASMconvertor.ilk └── BMPtoASMconvertor.pdb ├── Executable (if you're lazy) ├── BMPtoASMconvertor.exe ├── BMPtoASMconvertor.iobj ├── BMPtoASMconvertor.ipdb ├── BMPtoASMconvertor.pdb └── User_Results │ ├── BMPColorASM │ └── method 2 results will be stored here.txt │ ├── BMPMonoASM │ └── method 3 results will be stored here.txt │ └── TextToASM │ └── method 1 results will be stored here.txt ├── README.md └── windows_4bit_color_swatches.png /.github/workflows/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /BMPtoASMconvertor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor.sln -------------------------------------------------------------------------------- /BMPtoASMconvertor/16color-example.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/16color-example.bmp -------------------------------------------------------------------------------- /BMPtoASMconvertor/16color-palette24bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/16color-palette24bit.bmp -------------------------------------------------------------------------------- /BMPtoASMconvertor/BMPtoASMconvertor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/BMPtoASMconvertor.cpp -------------------------------------------------------------------------------- /BMPtoASMconvertor/BMPtoASMconvertor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/BMPtoASMconvertor.h -------------------------------------------------------------------------------- /BMPtoASMconvertor/BMPtoASMconvertor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/BMPtoASMconvertor.vcxproj -------------------------------------------------------------------------------- /BMPtoASMconvertor/BMPtoASMconvertor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/BMPtoASMconvertor.vcxproj.filters -------------------------------------------------------------------------------- /BMPtoASMconvertor/BMPtoASMconvertor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/BMPtoASMconvertor.vcxproj.user -------------------------------------------------------------------------------- /BMPtoASMconvertor/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Color.h -------------------------------------------------------------------------------- /BMPtoASMconvertor/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Config.h -------------------------------------------------------------------------------- /BMPtoASMconvertor/ConfigHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/ConfigHandler.h -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/BMPtoASMconvertor.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/BMPtoASMconvertor.lastbuildstate -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASM.94CA8001.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASMconvertor.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASMconvertor.log -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/BMPtoASMconvertor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/BMPtoASMconvertor.obj -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/vc142.idb -------------------------------------------------------------------------------- /BMPtoASMconvertor/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/Debug/vc142.pdb -------------------------------------------------------------------------------- /BMPtoASMconvertor/User_Results/BMPColorASM/method 2 results will be stored here.txt: -------------------------------------------------------------------------------- 1 | helloworld -------------------------------------------------------------------------------- /BMPtoASMconvertor/User_Results/BMPMonoASM/method 3 results will be stored here.txt: -------------------------------------------------------------------------------- 1 | helloworld -------------------------------------------------------------------------------- /BMPtoASMconvertor/User_Results/TextToASM/method 1 results will be stored here.txt: -------------------------------------------------------------------------------- 1 | helloworld -------------------------------------------------------------------------------- /BMPtoASMconvertor/cactus_example.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/cactus_example.bmp -------------------------------------------------------------------------------- /BMPtoASMconvertor/cactus_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/cactus_example.txt -------------------------------------------------------------------------------- /BMPtoASMconvertor/config.CONFIG: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 4 4 | 54 5 | -------------------------------------------------------------------------------- /BMPtoASMconvertor/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/BMPtoASMconvertor/reader.h -------------------------------------------------------------------------------- /ColorAssignments.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/ColorAssignments.PNG -------------------------------------------------------------------------------- /Debug/BMPtoASMconvertor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/Debug/BMPtoASMconvertor.exe -------------------------------------------------------------------------------- /Debug/BMPtoASMconvertor.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/Debug/BMPtoASMconvertor.ilk -------------------------------------------------------------------------------- /Debug/BMPtoASMconvertor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/Debug/BMPtoASMconvertor.pdb -------------------------------------------------------------------------------- /Executable (if you're lazy)/BMPtoASMconvertor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/Executable (if you're lazy)/BMPtoASMconvertor.exe -------------------------------------------------------------------------------- /Executable (if you're lazy)/BMPtoASMconvertor.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/Executable (if you're lazy)/BMPtoASMconvertor.iobj -------------------------------------------------------------------------------- /Executable (if you're lazy)/BMPtoASMconvertor.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/Executable (if you're lazy)/BMPtoASMconvertor.ipdb -------------------------------------------------------------------------------- /Executable (if you're lazy)/BMPtoASMconvertor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/Executable (if you're lazy)/BMPtoASMconvertor.pdb -------------------------------------------------------------------------------- /Executable (if you're lazy)/User_Results/BMPColorASM/method 2 results will be stored here.txt: -------------------------------------------------------------------------------- 1 | helloworld -------------------------------------------------------------------------------- /Executable (if you're lazy)/User_Results/BMPMonoASM/method 3 results will be stored here.txt: -------------------------------------------------------------------------------- 1 | helloworld -------------------------------------------------------------------------------- /Executable (if you're lazy)/User_Results/TextToASM/method 1 results will be stored here.txt: -------------------------------------------------------------------------------- 1 | helloworld -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/README.md -------------------------------------------------------------------------------- /windows_4bit_color_swatches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaadBazaz/antiPixel/HEAD/windows_4bit_color_swatches.png --------------------------------------------------------------------------------