retro-go/rg_config.py
Alex Duchesne e569f60d0c Updated partition sizes
Using esp-idf 4.4+ results in launcher and retro-core always overflowing unfortunately...
2025-02-03 16:21:15 -05:00

19 lines
707 B
Python

# Notes:
# - Enabling netplay in an emulator increases its size by ~350KB (~450KB in esp-idf 4.0)
# - Enabling profiling in an emulator increases its size by ~75KB (without no-inline)
# - Keep at least 32KB free in a partition for future updates
# - Partitions must be 64K aligned
# - Partitions of type data are ignored when building a .fw.
# - Subtypes and offsets and size may be adjusted when building a .fw or .img
PROJECT_NAME = "Retro-Go"
PROJECT_ICON = "assets/icon.raw"
PROJECT_APPS = {
# Project name Type, SubType, Size
'launcher': [0, 0, 983040],
'retro-core': [0, 0, 983040],
'prboom-go': [0, 0, 786432],
'gwenesis': [0, 0, 983040],
'fmsx': [0, 0, 589824],
}