Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hazzaclark/mdcheck
A SEGA Mega Drive Checksum IRQ tool
https://github.com/hazzaclark/mdcheck
checksum computer-architecture sega sega-genesis sega-mega-drive
Last synced: 5 days ago
JSON representation
A SEGA Mega Drive Checksum IRQ tool
- Host: GitHub
- URL: https://github.com/hazzaclark/mdcheck
- Owner: hazzaclark
- License: gpl-3.0
- Created: 2023-06-22T21:42:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-01T22:38:52.000Z (about 1 year ago)
- Last Synced: 2024-11-12T17:33:06.162Z (3 months ago)
- Topics: checksum, computer-architecture, sega, sega-genesis, sega-mega-drive
- Language: C
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mdcheck
A SEGA Mega Drive Checksum IRQ toolThis tool is to highlight the configuration I have setup to check for concurrent Checksums.
Checksums are chunks of memory that discern Error Handling on the lowest scale.In this regard, the SEGA Mega Drive/Genesis will run a series of pre-directive checks on the ROM's respective
header file to ensure that it meets a specific criteria in order to run.Checksums in this context are used to look for illegal instructions and or opcode malfunctions
in the process of transmission of storage and parsing of data.# Demonstration:
### Michael Jackson's Moonwalker (Rev A).bin
![image](https://github.com/hazzaaclark/mdcheck/assets/107435091/7fad2dce-6893-4ea2-9095-ea7fbafc3ec0)
### Sonic the Hedgehog (USA, Europe).bin
![image](https://github.com/hazzaaclark/mdcheck/assets/107435091/4b584cd8-998d-440e-a4d2-cfa121303d76)
# Buidling:
git clone this repository, change directory into the clone repo and compile from source:
``git clone https://github.com/hazzaaclark/mdcheck.git``
``cd mdcheck``
``make``
build instructions have changed slightly.
Rather than providing the ROM as an in-code parameter, you can now attach it onto the end of the execution``./main \PATH\TO\MD\ROM\ROM_NAME.bin``
- see above image for guidance on the formatting
# Sources:
[M68K Vector Table](https://wiki.neogeodev.org/index.php?title=68k_vector_table)
[ROM Header Ref.](https://plutiedev.com/rom-header#system)