runtime: we're growing, put storage at 1M instead of 512K.

This commit is contained in:
whitequark 2017-12-26 03:34:16 +00:00 committed by Sebastien Bourdeauducq
parent 2fd3b3324a
commit 65204a091f
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ SECTIONS
{
/* Keep in sync with artiq_flash.py */
_fstorage = .;
. = _ftext + 0x80000;
. = _ftext + 0x100000;
. += /*SPIFLASH_SECTOR_SIZE*/ 0x10000;
_estorage = .;
} > runtime

View File

@ -70,7 +70,7 @@ def main():
"gateware": 0x000000,
"bios": 0xaf0000,
"runtime": 0xb00000,
"storage": 0xb80000,
"storage": 0xc00000,
},
}[opts.target]