mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 16:31:05 +02:00
14 lines
378 B
Python
Executable File
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())
|