Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/remogatto/sms
A Sega Master System Emulator written in Go
https://github.com/remogatto/sms
Last synced: 2 months ago
JSON representation
A Sega Master System Emulator written in Go
- Host: GitHub
- URL: https://github.com/remogatto/sms
- Owner: remogatto
- License: mit
- Created: 2012-12-24T23:22:10.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-09-25T06:56:58.000Z (over 11 years ago)
- Last Synced: 2024-06-20T11:06:20.550Z (7 months ago)
- Language: Go
- Size: 1.19 MB
- Stars: 103
- Watchers: 8
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![Build Status](https://drone.io/github.com/remogatto/sms/status.png)](https://drone.io/github.com/remogatto/sms/latest)
# SMS - A concurrent Sega Master System emulator
SMS is a free and open-source (MIT licensed) Sega Master System emulator written in
[Go](http://golang.org). I think it's the first Sega Master System emulator written
in this language.![Alex Kidd](http://remogatto.github.com/images/alex.png)
# Quick start
Installing and starting SMS with Go is simple:
go get -v github.com/remogatto/sms/
./sms roms/blockhead.sms# Description
SMS is based on a
[concurrent](http://github.com/remogatto/gospeccy/wiki/Architecture)
architecture very similar to
[GoSpeccy](http://github.com/remogatto/gospeccy), another emulator
written in Go.The primary source of inspiration for SMS was
[Miracle](http://xania.org/miracle/miracle.html), a cool
Javascript SMS emulator.If you like this project, please star it on
[GitHub](http://github.com/remogatto/sms)! Bug reports and testing are
also appreciated! And don't forget to fork and send patches, of
course.# Features
* Complete Zilog Z80 emulation
* Concurrent [architecture](http://github.com/remogatto/gospeccy/wiki/Architecture)
* SDL backend
* 2x scaler and fullscreen# Todo
* Sound support
* Write more tests# Key bindings
Host computer Sega Master System
----------------------------------
Arrows Joypad directions
X Fire 1
Z Fire 2For more info about key bindings see file input.go
# Proprietary games
Generally, SMS games are protected by copyright so none of them
is included with the emulator. However, it is possible to find tons of games
for the Sega Master System on the Internet.# Credits
* Thanks to [⚛](http://github.com/0xe2-0x9a-0x9b) for his work on
GoSpeccy which served as inspiration for the SMS architecture.
* Thanks to Matt Godbolt for his SMS Javascript emulator.# Contacts
* [email protected]
* [Twitter](http://twitter.com/remogatto)
* [Google+](https://plus.google.com/u/0/100271912081202470197/posts/p/pub)# License
Copyright (c) 2012 Andrea Fazzi
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.