Subversion Repositories Kolibri OS

Rev

Rev 8727 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. CHIP8 - Chip-8 systems emulator, written specially for KolibriOS in pure FASM from scratch.
  2. Author: rgimad (rustem.gimadutdinov@gmail.com)
  3. License: GNU GPL v2
  4.  
  5. == Usage ==
  6. Open shell in emulator directory (in Eolite Ctrl+G opens shell).
  7.  
  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
  42.  
  43. === CHIP8 (roms/chip8.ch8) ===
  44. Prints out the CHIP8 logo
  45.  
  46. More ROMs you can find here: https://github.com/dmatlack/chip8/tree/master/roms
  47.