2020-01-11 13:20:44 +11:00
|
|
|
# Sega Master System emulator
|
|
|
|
|
|
|
|
This emulates a Sega Master system with a monochrome screen and a Genesis pad
|
|
|
|
hooked to port A.
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
You need `xcb` and `pkg-config` to build this. If you have them, run `make`.
|
|
|
|
You'll get a `sms` executable.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Launch the emulator with `./sms /path/to/rom` (you can use the binary from the
|
|
|
|
`sms` recipe.
|
|
|
|
|
|
|
|
This will show a window with the screen's content on it. The mappings to the
|
|
|
|
pad are:
|
|
|
|
|
2020-02-25 12:36:08 +11:00
|
|
|
* W --> Up
|
|
|
|
* A --> Left
|
|
|
|
* S --> Down
|
|
|
|
* D --> Right
|
|
|
|
* H --> A
|
|
|
|
* J --> B
|
|
|
|
* K --> C
|
|
|
|
* L --> Start
|
2020-01-11 13:20:44 +11:00
|
|
|
|
|
|
|
Press ESC to quit.
|