]> 4ch.mooo.com Git - 16.git/blobdiff - src/palllist.c
made palllist.exe as an experiment for me to make a palette system i want for p16...
[16.git] / src / palllist.c
diff --git a/src/palllist.c b/src/palllist.c
new file mode 100755 (executable)
index 0000000..e15d862
--- /dev/null
@@ -0,0 +1,66 @@
+/* Project 16 Source Code~\r
+ * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
+ *\r
+ * This file is part of Project 16.\r
+ *\r
+ * Project 16 is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * Project 16 is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
+ * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
+ * Fifth Floor, Boston, MA 02110-1301 USA.\r
+ *\r
+ */\r
+/*\r
+ * palllist experiment\r
+ */\r
+/*\r
+ * An experiment where I make 2 small linked list which points to 2 arrays\r
+ * one is the "hardware palette" array\r
+ * the other is "image palette" array\r
+ * and their respectable pointers point to their [i] stuff\r
+ *\r
+ * the palette updater stuff i want to make is this:\r
+ *\r
+ * VGA         IMG\r
+ * 1-                  2-\r
+ * 2-                  4-\r
+ * 3-                  0-\r
+ * 4-                  9-\r
+ * 5-                  0-(I will figure this out later if  there is dup numbs)\r
+ * 6-\r
+ * 7-\r
+ * 8-\r
+ *\r
+ *             MERGE THEM INTO\r
+ *\r
+ * VGA\r
+ * 1-\r
+ * 2->IMG[0]\r
+ * 3-\r
+ * 4->IMG[1]\r
+ * 5\r
+ * 6\r
+ * 7\r
+ * 8\r
+ * 9->IMG[3]\r
+ * 0->IMG[2]->IMG[4]\r
+ *\r
+ * i am going to work on a really big area of code it will be on the refresh system, the walking/scrolling system, things that use showpage, adding disableing 8087 functions if no 8087 detected, and a bunch of other things i cannot remember off the top of my head because i am BURNT. I need a small break~ -- -- -- -- update! i am working on this i made ZC_WALK and i am going to move to VRL/VRS soon! .\r
+ * ==== PRE SHOWPAGE TO SHOWMV CONVERSION ==== i am going to work on a really big area of code it will be on the refresh system, the walking/scrolling system, things that use showpage, adding disableing 8087 functions if no 8087 detected, and a bunch of other things i cannot remember off the top of my head because i am BURNT. I need a small break~ -- -- -- -- update! i am working on this i made ZC_WALK and i am going to move to VRL/VRS soon!\r
+ */\r
+#include <stdio.h>\r
+\r
+void\r
+main(int argc, char *argv[])\r
+{\r
+//TOO TIREDWWWW\r
+}\r