diff options
author | Yannis Huber <[email protected]> | 2020-06-02 20:41:31 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-07-08 00:21:59 +0200 |
commit | 4a658b9082d015ba91ee6e6819b04ad2050b3c2b (patch) | |
tree | ded0d100309de76f24ee3b97c70a77e446fad8da /targets | |
parent | 34e0961a7906bc94b1d867ba121f9a409b6b6180 (diff) | |
download | tinygo-4a658b9082d015ba91ee6e6819b04ad2050b3c2b.tar.gz tinygo-4a658b9082d015ba91ee6e6819b04ad2050b3c2b.zip |
Add llvm code model option in target definition
Diffstat (limited to 'targets')
-rw-r--r-- | targets/maixbit.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/targets/maixbit.ld b/targets/maixbit.ld index 9206809b0..9b277a6ce 100644 --- a/targets/maixbit.ld +++ b/targets/maixbit.ld @@ -1,7 +1,7 @@ MEMORY { - RAM (xrw) : ORIGIN = 0xffffffff80000000, LENGTH = 6M + RAM (xrw) : ORIGIN = 0x80000000, LENGTH = (6 * 1024 * 1024) } REGION_ALIAS("FLASH_TEXT", RAM); |