Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.87 KB

README.md

File metadata and controls

56 lines (40 loc) · 1.87 KB

Quantum Burst

License Release

A bullet hell style space shooter written for the Sega Genesis.

Development

Development can be done on Windows only, and has been tested only on Windows 10.

Prerequisites

Build

Build scripts are provided for both powershell and cmd. They will process all the files under game/res, game/inc and game/src to produce a rom.bin file in the game/out directory. After this is done the checksum will be calculated and rom_final.bin generated with the correct checksum.

powershell

.\build.ps1 [-BuildType] [-Revision] [-Rebuild]
  • -BuildType - Can be any of Debug, Release, Clean or ASM. If omitted will default to Release
  • -Revision - Can be any integer value of 99 or less. If omitted will default to 99
  • -Rebuild - Will run a Clean before a Debug or Release build. This has no effect on other build types.

cmd

build.bat [build-type] [revision]
  • build-type - Can be any of Debug, Release, Clean or ASM. If omitted will default to same default as powershell script.
  • revision - Can be any integer value of 99 or less. If omitted will default to same default as powershell script.

Note this method will always do a rebuild.