summaryrefslogtreecommitdiff
path: root/GFX8
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2020-05-13 20:25:51 +0000
committerIan C <ianc@noddybox.co.uk>2020-05-13 20:25:51 +0000
commit58b60d1455a6670cbfb1572257460065fe7e6207 (patch)
tree2a5278c4534a16bcf08dad5433b6f8fb60368ede /GFX8
parent983bba81d89ba877e8870251d92f64e16cf901c0 (diff)
Builds (just) and runs.
Diffstat (limited to 'GFX8')
-rw-r--r--GFX8/amoeba4
-rw-r--r--GFX8/butterfly4
-rw-r--r--GFX8/butterflygen4
-rw-r--r--GFX8/chaser4
-rw-r--r--GFX8/chasergen4
-rw-r--r--GFX8/diamond4
-rw-r--r--GFX8/earth4
-rw-r--r--GFX8/exit4
-rw-r--r--GFX8/filter4
-rw-r--r--GFX8/miner4
-rw-r--r--GFX8/oneup4
-rw-r--r--GFX8/rock4
-rw-r--r--GFX8/rockgen4
-rw-r--r--GFX8/rockswitch4
-rw-r--r--GFX8/space4
-rw-r--r--GFX8/tuffwall4
-rw-r--r--GFX8/wall4
17 files changed, 68 insertions, 0 deletions
diff --git a/GFX8/amoeba b/GFX8/amoeba
new file mode 100644
index 0000000..39b61c9
--- /dev/null
+++ b/GFX8/amoeba
@@ -0,0 +1,4 @@
+#define amoeba_width 8
+#define amoeba_height 8
+static char amoeba_bits[] = {
+ 0x9f, 0x69, 0xb5, 0xbe, 0xa6, 0xbd, 0xdb, 0xe7};
diff --git a/GFX8/butterfly b/GFX8/butterfly
new file mode 100644
index 0000000..ad1c363
--- /dev/null
+++ b/GFX8/butterfly
@@ -0,0 +1,4 @@
+#define butterfly_width 8
+#define butterfly_height 8
+static char butterfly_bits[] = {
+ 0x3c, 0x5a, 0x66, 0x7e, 0x7e, 0x66, 0x5a, 0x3c};
diff --git a/GFX8/butterflygen b/GFX8/butterflygen
new file mode 100644
index 0000000..b013f41
--- /dev/null
+++ b/GFX8/butterflygen
@@ -0,0 +1,4 @@
+#define butterflygen_width 8
+#define butterflygen_height 8
+static char butterflygen_bits[] = {
+ 0xff, 0x81, 0xa5, 0xbd, 0xbd, 0xa5, 0x81, 0xff};
diff --git a/GFX8/chaser b/GFX8/chaser
new file mode 100644
index 0000000..c701378
--- /dev/null
+++ b/GFX8/chaser
@@ -0,0 +1,4 @@
+#define chaser_width 8
+#define chaser_height 8
+static char chaser_bits[] = {
+ 0xc3, 0xbd, 0x5a, 0x7e, 0x42, 0x7e, 0x00, 0x99};
diff --git a/GFX8/chasergen b/GFX8/chasergen
new file mode 100644
index 0000000..6113cfb
--- /dev/null
+++ b/GFX8/chasergen
@@ -0,0 +1,4 @@
+#define chasergen_width 8
+#define chasergen_height 8
+static char chasergen_bits[] = {
+ 0xff, 0x81, 0x99, 0xa5, 0xbd, 0xbd, 0x81, 0xff};
diff --git a/GFX8/diamond b/GFX8/diamond
new file mode 100644
index 0000000..c4c3823
--- /dev/null
+++ b/GFX8/diamond
@@ -0,0 +1,4 @@
+#define diamond_width 8
+#define diamond_height 8
+static char diamond_bits[] = {
+ 0xe7, 0xdb, 0xb5, 0x62, 0x76, 0xbd, 0xdb, 0xe7};
diff --git a/GFX8/earth b/GFX8/earth
new file mode 100644
index 0000000..3be8848
--- /dev/null
+++ b/GFX8/earth
@@ -0,0 +1,4 @@
+#define earth_width 8
+#define earth_height 8
+static char earth_bits[] = {
+ 0x77, 0xdd, 0xff, 0x7f, 0xeb, 0xfe, 0xdf, 0xf5};
diff --git a/GFX8/exit b/GFX8/exit
new file mode 100644
index 0000000..8d8b4b8
--- /dev/null
+++ b/GFX8/exit
@@ -0,0 +1,4 @@
+#define exit_width 8
+#define exit_height 8
+static char exit_bits[] = {
+ 0xff, 0x81, 0x99, 0xbd, 0x99, 0x99, 0x81, 0xff};
diff --git a/GFX8/filter b/GFX8/filter
new file mode 100644
index 0000000..c5638e4
--- /dev/null
+++ b/GFX8/filter
@@ -0,0 +1,4 @@
+#define filter_width 8
+#define filter_height 8
+static char filter_bits[] = {
+ 0x00, 0x66, 0x66, 0x66, 0x00, 0x42, 0x66, 0x00};
diff --git a/GFX8/miner b/GFX8/miner
new file mode 100644
index 0000000..10b1a81
--- /dev/null
+++ b/GFX8/miner
@@ -0,0 +1,4 @@
+#define miner_width 8
+#define miner_height 8
+static char miner_bits[] = {
+ 0xe3, 0xe3, 0xf7, 0xc1, 0xf7, 0xeb, 0xeb, 0xc9};
diff --git a/GFX8/oneup b/GFX8/oneup
new file mode 100644
index 0000000..7257999
--- /dev/null
+++ b/GFX8/oneup
@@ -0,0 +1,4 @@
+#define oneup_width 8
+#define oneup_height 8
+static char oneup_bits[] = {
+ 0xc3, 0xbd, 0x6e, 0x66, 0x6e, 0x6e, 0xbd, 0xc3};
diff --git a/GFX8/rock b/GFX8/rock
new file mode 100644
index 0000000..a692cff
--- /dev/null
+++ b/GFX8/rock
@@ -0,0 +1,4 @@
+#define rock_width 8
+#define rock_height 8
+static char rock_bits[] = {
+ 0x81, 0x04, 0x20, 0x00, 0x42, 0x00, 0x08, 0x81};
diff --git a/GFX8/rockgen b/GFX8/rockgen
new file mode 100644
index 0000000..2dd0d41
--- /dev/null
+++ b/GFX8/rockgen
@@ -0,0 +1,4 @@
+#define rockgen_width 8
+#define rockgen_height 8
+static char rockgen_bits[] = {
+ 0xff, 0x81, 0x99, 0xb5, 0xbd, 0x99, 0x81, 0xff};
diff --git a/GFX8/rockswitch b/GFX8/rockswitch
new file mode 100644
index 0000000..cc04d49
--- /dev/null
+++ b/GFX8/rockswitch
@@ -0,0 +1,4 @@
+#define rockswitch_width 8
+#define rockswitch_height 8
+static char rockswitch_bits[] = {
+ 0x00, 0x7e, 0x7e, 0x6a, 0x56, 0x4e, 0x7e, 0x00};
diff --git a/GFX8/space b/GFX8/space
new file mode 100644
index 0000000..c2efb9d
--- /dev/null
+++ b/GFX8/space
@@ -0,0 +1,4 @@
+#define space_width 8
+#define space_height 8
+static char space_bits[] = {
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
diff --git a/GFX8/tuffwall b/GFX8/tuffwall
new file mode 100644
index 0000000..0e2360a
--- /dev/null
+++ b/GFX8/tuffwall
@@ -0,0 +1,4 @@
+#define tuffwall_width 8
+#define tuffwall_height 8
+static char tuffwall_bits[] = {
+ 0x00, 0x3c, 0x5a, 0x66, 0x66, 0x5a, 0x3c, 0x00};
diff --git a/GFX8/wall b/GFX8/wall
new file mode 100644
index 0000000..54372ab
--- /dev/null
+++ b/GFX8/wall
@@ -0,0 +1,4 @@
+#define wall_width 8
+#define wall_height 8
+static char wall_bits[] = {
+ 0xff, 0x89, 0xff, 0xa5, 0xa5, 0xff, 0x91, 0xff};