See here for an updated version: https://gitgud.io/zumi-gbs/hcs/gbstools
MBC30 is a variant of the common MBC3 mapper that can access twice the memory as the regular variant. MBC30 allows for up to 4mb ROM and 64kb SRAM over MBC3's 2mb ROM and 32kb SRAM. It is only known to be used in the Japanese version of Pokemon Crystal, mainly for Mobile System GB features.
The added space provided by this variant is considered beneficial especially for ROM hacks. For example, Pokemon Coral (2022 demo and up) uses it for sampled cries and other extra content.
Everdrives will not work, unless an OS update is released. Until then, you'll need to make/buy an MBC30 flashcart (such as this project, or BennVenn's custom cart), and have reflashing tools.
This file contains 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
#!/usr/bin/env python3 | |
import html | |
from datetime import datetime, timedelta, timezone | |
import re | |
import json | |
import sys | |
import requests | |
from bs4 import BeautifulSoup |
This file contains 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
pkgname=tk84 | |
pkgver=8.4.20 | |
_pkgver=8.4.20 | |
pkgrel=1 | |
pkgdesc="A windowing toolkit for use with tcl" | |
arch=('x86_64') | |
url="http://tcl.sourceforge.net/" | |
license=('custom') | |
depends=('tcl84' 'libxss' 'libxft') | |
options=('staticlibs') |
This file contains 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
#!/bin/bash | |
CFLAGS="${CFLAGS/-fno-plt/}" | |
LDFLAGS="${LDFLAGS/,-z,now/}" | |
mkdir -p usr/lib | |
mkdir -p usr/lib64 | |
mkdir -p build64 | |
mkdir -p build32 |
This file contains 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
ROMX $00 767 bytes to go 95.32% Continue from: 0x3e32 | |
ROMX $01 coverage complete | |
ROMX $02 coverage complete | |
ROMX $03 coverage complete | |
ROMX $04 1053 bytes to go 93.57% Continue from: 0x17be3 | |
ROMX $05 14596 bytes to go 10.91% Continue from: 0x18c94 | |
ROMX $06 256 bytes to go 98.44% Continue from: 0x1ff00 | |
ROMX $07 coverage complete | |
ROMX $08 coverage complete | |
ROMX $09 16384 bytes to go 0.00% Continue from: 0x24000 |