Files
gen1recomp/tools/build_data.py
2026-07-17 20:30:02 -04:00

14 lines
378 B
Python
Executable File

#!/usr/bin/env python3
"""Build the port's generated data and graphics from a Pokemon Red ROM.
The public build requires only a canonical US Pokemon Red ROM and Pillow.
Assembly-erased names and the small address subset used by the extractor
are bundled in tools/rom_manifest.json.
"""
from build_rom_data import main
if __name__ == "__main__":
raise SystemExit(main())