Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freem/hyperball
code name HYPER BALL. (a video game for multiple? platforms)
https://github.com/freem/hyperball
Last synced: 2 days ago
JSON representation
code name HYPER BALL. (a video game for multiple? platforms)
- Host: GitHub
- URL: https://github.com/freem/hyperball
- Owner: freem
- License: mit
- Created: 2016-04-07T00:42:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-16T04:06:39.000Z (over 8 years ago)
- Last Synced: 2024-11-16T03:55:20.129Z (about 2 months ago)
- Language: Assembly
- Homepage:
- Size: 263 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# code name HYPER BALL
yes.## Notes
- **Initial Platform**: Neo-Geo (Other platforms possible in the future)
- **Number of Players**: 1-2 (ideally 1-4 for the 2v2 mode)
- **Game Modes**: Arcade (1v1, 2v2), Versus (1v1, 2v2)## Building from Source Code
(This is based off of freem's environment; Kannagi is using a slightly different setup)### Requirements
Building the game from the source code requires the following:
- GNU Make
- vasm (68K with mot syntax, Z80 with oldstyle syntax)
- freem's environment has `vasmm68k` renamed to `vasm68k`; please edit the `Makefile` if you need to call `vasmm68k` instead.
- Various other tools that haven't been decided yet (we'll cross that bridge when we get there)This list is subject to change, of course.
### How to Build
- `make all` to create the `cart`, `cd`, and `chd` targets.
- `make cart` to create the cartridge (MVS, home/AES versions) target.
- `make cd` to create the Neo-Geo CD target.
- `make chd` to create a CHD file for use with MAME. (Implies `make cd`, so you don't have to run that first.)Please read the `Makefile` if you require more information.