This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # License: MIT | |
| import sys | |
| import mmap | |
| import hashlib | |
| import struct | |
| # MD5 hashes from https://datomatic.no-intro.org | |
| # Headerless, as header is changed from non-AC releases. | |
| known_roms = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <fstream> | |
| #include <string> | |
| int processdata(unsigned char *InData, unsigned char *OutData, int filedatasize) // OutData=0 to get size | |
| { | |
| int CurrIn = 0x4; //Skip size | |
| int CurrOut = 0; | |
| while (CurrIn < filedatasize) | |
| { | |
| int Code = InData[CurrIn++]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # LAN Party Calculator for Mario Kart, Kirby Air Riders, and F-Zero | |
| # Code License: MIT, Copyright 2026 Seth Larson | |
| # Data License: CC-BY-SA 4.0, Wikipedia | |
| import dataclasses | |
| import enum | |
| import math | |
| from dataclasses import dataclass | |
| from textwrap import dedent as d |
OlderNewer