The Space Invaders emulator I wrote is actually a generic 8080 emulator. Quite a few arcade games used similar hardware to the old Space Invaders machines.

To implement the Lunar Rescue game I create a TUPLE specific for the game and delegated all functionality to the Space Invaders TUPLE. To implement the correct colours and sounds I'll add methods specific to the Lunar Rescue TUPLE. Factor does OO easily.
I did some refactoring of Space Invaders and now running the 'apps/space-invaders' module brings up a window with buttons for the supported games. Clicking a button runs Space Invaders or Lunar Rescue.
The ROM files have moved too. They now live in subdirectories off 'apps/space-invaders/resources'. You'll need to create 'invaders' and 'lrescue' subdirectories, each containing the require ROM files. These are specifically:
- invaders/invaders.e
- invaders/invaders.f
- invaders/invaders.g
- invaders/invaders.h
- lrescue/lrescue.1
- lrescue/lrescue.2
- lrescue/lrescue.3
- lrescue/lrescue.4
- lrescue/lrescue.5
- lrescue/lrescue.6
You'll notice I've gone towards using the separate ROM files for Space Invaders rather than the complete 'invaders.rom'. This is to make it easier so you don't have to manually concatenate the files.