Subversion Repositories Kolibri OS

Rev

Rev 8727 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8727 Rev 8734
Line 1... Line 1...
1
CHIP-8 Emulator for KolibriOS.
1
CHIP8 - Chip-8 systems emulator, written specially for KolibriOS in pure FASM from scratch.
2
Author: rgimad
2
Author: rgimad (rustem.gimadutdinov@gmail.com)
3
Year: 2021
3
License: GNU GPL v2
Line 4... Line 4...
4
 
4
 
-
 
5
== Usage ==
Line 5... Line -...
5
How to use:
-
 
6
 
6
Open shell in emulator directory (in Eolite Ctrl+G opens shell).
Line 7... Line 7...
7
Open shell in current directory (in Eolite Ctrl+G).
7
 
Line -... Line 8...
-
 
8
Type for example:
-
 
9
 
-
 
10
  chip8 roms/ibm.ch8
-
 
11
 
-
 
12
== Keys ==
-
 
13
 
-
 
14
CHIP8 emulator can process 16 keys, they are: 0-9, a, b, c, d, e, f
-
 
15
 
-
 
16
== ROMs ==
-
 
17
 
-
 
18
Emulator goes with some ROMs: games, demos, programs, etc.
-
 
19
Some of them you can see below:
-
 
20
 
-
 
21
=== TETRIS (roms/tetris1.ch8) ===
-
 
22
 
-
 
23
How to play:
-
 
24
4 key is left rotate
-
 
25
5 - left move
-
 
26
6 - right move
-
 
27
 
-
 
28
After every 5 lines, the speed increases slightly and peaks at 45 lines.
-
 
29
 
-
 
30
=== SPACE INVADERS (roms/invaders1.ch8) ===
-
 
31
 
-
 
32
Very famous game
-
 
33
 
-
 
34
=== MAZE (roms/maze_alt.ch8) ===
-
 
35
A random maze generator
-
 
36
 
-
 
37
=== RND (roms/rnd.ch8) ===
-
 
38
Generates and prints out a random number. Press any key to generate one more.
-
 
39
 
-
 
40
=== IBM (roms/ibm.ch8) ===
-
 
41
Prints out the IBM logo
8
Type for example:
42