https://github.com/deved2/dseq
Disassembly of Mario's Picross's sound driver
https://github.com/deved2/dseq
Last synced: about 1 year ago
JSON representation
Disassembly of Mario's Picross's sound driver
- Host: GitHub
- URL: https://github.com/deved2/dseq
- Owner: DevEd2
- Created: 2021-10-28T16:52:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-28T17:17:48.000Z (over 4 years ago)
- Last Synced: 2025-01-08T23:42:38.384Z (over 1 year ago)
- Language: Assembly
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DSEQ
Disassembly of Mario's Picross's sound driver.
# Dependencies
- [RGBDS](https://github.com/gbdev/rgbds)
# Building
## Windows
Run `build.bat`.
## Linux and macOS
Run build.sh. If you get a "permission denied" error, run `chmod +x build.sh` and try again. On MacOS, you may need to [disable Gatekeeper](https://disable-gatekeeper.github.io/).
# Inserting custom music into a Mario's Picross ROM
## Requirements
- A Mario's Picross ROM
- A hex editor
## Instructions
1. Open the built ROM with your custom music in a hex editor and copy everything from address 0x4000 to the end of the file.
2. Open your Mario's Picross ROM in a hex editor and navigate to address 0x3C000. This is where the sound driver is located in a vanilla Mario's Picross ROM.
3. Paste the copied data from the built ROM in your Mario's Picross ROM at address 0x3C000, overwriting what was already there.