Merge pull request #900 from stffrdhrn/rom-to-128k

integration/soc_core: Increase default ROM size to 128K
This commit is contained in:
Tim Ansell 2021-04-28 15:28:19 -07:00 committed by GitHub
commit 11f091d4cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ def soc_core_args(parser):
parser.add_argument("--no-ctrl", action="store_true", help="Disable Controller (default=False).") parser.add_argument("--no-ctrl", action="store_true", help="Disable Controller (default=False).")
# ROM parameters # ROM parameters
parser.add_argument("--integrated-rom-size", default=0x10000, type=auto_int, help="Size/Enable the integrated (BIOS) ROM (default=64KB, automatically resized to BIOS size when smaller).") parser.add_argument("--integrated-rom-size", default=0x20000, type=auto_int, help="Size/Enable the integrated (BIOS) ROM (default=128KB, automatically resized to BIOS size when smaller).")
parser.add_argument("--integrated-rom-file", default=None, type=str, help="Integrated (BIOS) ROM binary file.") parser.add_argument("--integrated-rom-file", default=None, type=str, help="Integrated (BIOS) ROM binary file.")
# SRAM parameters # SRAM parameters