diff options
| author | 2019-09-27 01:09:28 -0400 | |
|---|---|---|
| committer | 2019-09-27 01:09:28 -0400 | |
| commit | 583bd4994a59add0f7d99b582cc72db96f1ac172 (patch) | |
| tree | 1ebf78de52b3726c9ae49e1d975992a30e1dbff8 /roms/MegaChip8 Demos | |
| parent | ca3946539a16f2f1175cd50531be564f0293060d (diff) | |
| download | chip8-583bd4994a59add0f7d99b582cc72db96f1ac172.tar.gz chip8-583bd4994a59add0f7d99b582cc72db96f1ac172.tar.bz2 chip8-583bd4994a59add0f7d99b582cc72db96f1ac172.zip | |
try to fix graphics wip
Diffstat (limited to 'roms/MegaChip8 Demos')
| -rw-r--r-- | roms/MegaChip8 Demos/Mega Minimal [Revival Studios, 2007].ch8 | bin | 0 -> 1914 bytes | |||
| -rw-r--r-- | roms/MegaChip8 Demos/Mega Particle Demo [zeroZshadow, 2008].ch8 | bin | 0 -> 50431 bytes | |||
| -rw-r--r-- | roms/MegaChip8 Demos/Mega Particle Demo [zeroZshadow, 2008].txt | 6 | ||||
| -rw-r--r-- | roms/MegaChip8 Demos/MegaMaze [David Winter, 2007].ch8 | bin | 0 -> 84 bytes | |||
| -rw-r--r-- | roms/MegaChip8 Demos/MegaMaze [David Winter, 2007].txt | 10 | ||||
| -rw-r--r-- | roms/MegaChip8 Demos/MegaSirpinski [Sergey Naydenov, 2010].ch8 | bin | 0 -> 725 bytes | |||
| -rw-r--r-- | roms/MegaChip8 Demos/Twister Demo [Revival Studios, 2007].ch8 | bin | 0 -> 176802 bytes | |||
| -rw-r--r-- | roms/MegaChip8 Demos/Twister Demo [Revival Studios, 2007].txt | 49 |
8 files changed, 65 insertions, 0 deletions
diff --git a/roms/MegaChip8 Demos/Mega Minimal [Revival Studios, 2007].ch8 b/roms/MegaChip8 Demos/Mega Minimal [Revival Studios, 2007].ch8 Binary files differnew file mode 100644 index 0000000..6e8c430 --- /dev/null +++ b/roms/MegaChip8 Demos/Mega Minimal [Revival Studios, 2007].ch8 diff --git a/roms/MegaChip8 Demos/Mega Particle Demo [zeroZshadow, 2008].ch8 b/roms/MegaChip8 Demos/Mega Particle Demo [zeroZshadow, 2008].ch8 Binary files differnew file mode 100644 index 0000000..aa1f4d1 --- /dev/null +++ b/roms/MegaChip8 Demos/Mega Particle Demo [zeroZshadow, 2008].ch8 diff --git a/roms/MegaChip8 Demos/Mega Particle Demo [zeroZshadow, 2008].txt b/roms/MegaChip8 Demos/Mega Particle Demo [zeroZshadow, 2008].txt new file mode 100644 index 0000000..25f05fa --- /dev/null +++ b/roms/MegaChip8 Demos/Mega Particle Demo [zeroZshadow, 2008].txt @@ -0,0 +1,6 @@ +This is my particledemo for the Chip-8, SuperChip and MegaChip8.
+Works on real hardware as well as emulators
+
+Enjoy!
+
+ zeroZshadow
\ No newline at end of file diff --git a/roms/MegaChip8 Demos/MegaMaze [David Winter, 2007].ch8 b/roms/MegaChip8 Demos/MegaMaze [David Winter, 2007].ch8 Binary files differnew file mode 100644 index 0000000..b93f2c5 --- /dev/null +++ b/roms/MegaChip8 Demos/MegaMaze [David Winter, 2007].ch8 diff --git a/roms/MegaChip8 Demos/MegaMaze [David Winter, 2007].txt b/roms/MegaChip8 Demos/MegaMaze [David Winter, 2007].txt new file mode 100644 index 0000000..1a3555a --- /dev/null +++ b/roms/MegaChip8 Demos/MegaMaze [David Winter, 2007].txt @@ -0,0 +1,10 @@ +MegaMaze, by David Winter
+
+Drawing a random maze like this one consists in drawing random diagonal
+lines. There are two possibilities: right-to-left line, and left-to-right
+line. Each line is composed of a 4*4 bitmap. As the lines must form non-
+circular angles, the two bitmaps won't be '/' and '\'. The first one
+(right line) will be a little bit modified. See at the end of this source.
+
+The maze is composed of 16 lines (as the bitmaps are 4 pixels high), each
+line consists of 32 bitmaps. Bitmaps are drawn in random mode. We choose a random value (0 or 1). If it is 1, we draw a left line bitmap. If it is 0, we draw a right one.
diff --git a/roms/MegaChip8 Demos/MegaSirpinski [Sergey Naydenov, 2010].ch8 b/roms/MegaChip8 Demos/MegaSirpinski [Sergey Naydenov, 2010].ch8 Binary files differnew file mode 100644 index 0000000..ee66495 --- /dev/null +++ b/roms/MegaChip8 Demos/MegaSirpinski [Sergey Naydenov, 2010].ch8 diff --git a/roms/MegaChip8 Demos/Twister Demo [Revival Studios, 2007].ch8 b/roms/MegaChip8 Demos/Twister Demo [Revival Studios, 2007].ch8 Binary files differnew file mode 100644 index 0000000..bebd6df --- /dev/null +++ b/roms/MegaChip8 Demos/Twister Demo [Revival Studios, 2007].ch8 diff --git a/roms/MegaChip8 Demos/Twister Demo [Revival Studios, 2007].txt b/roms/MegaChip8 Demos/Twister Demo [Revival Studios, 2007].txt new file mode 100644 index 0000000..92021a3 --- /dev/null +++ b/roms/MegaChip8 Demos/Twister Demo [Revival Studios, 2007].txt @@ -0,0 +1,49 @@ +-----------------------------------------------------------------------------
+ /////////////////
+ //////////////////
+ //// ////
+ //// ///////////
+ //// ///////////
+ //// ////
+ //// ///////////
+ //// //////////
+
+ www.revival-studios.com
+-----------------------------------------------------------------------------
+Title : Twisterbar Demo
+Author : Martijn Wenting / Revival Studios
+Genre : Demo
+System : MegaChip8
+Date : 16/12/2007
+Product ID : RS-M8003
+-----------------------------------------------------------------------------
+
+All the contents of this package are (c)Copyright 2007 Revival Studios.
+
+The contents of the package may only be spread in its original form, and may not be
+published or distributed otherwise without the written permission of the author.
+
+Description:
+------------
+The Twisterbar Demo is a demo for the MegaChip8 system.
+It is one of the first products i've made after implementing the MegaChip8
+extensions to my Chip8 emulator.
+
+Running the demo:
+-----------------
+Use the Megachip emulator or any other MegaChip8 compatible emulator to run the demo.
+
+Credits:
+--------
+Programming, Graphics and Music by: Martijn Wenting
+
+Distribution:
+-------------
+This package can be freely distributed in its original form.
+If you would like to include this demo in your rom package, please let me know.
+
+Watch out for more releases soon!
+
+
+ Martijn Wenting / Revival Studios
+
|