diff options
author | 2022-02-25 01:19:34 +0000 | |
---|---|---|
committer | 2022-02-25 01:21:05 +0000 | |
commit | 3e8a5beec5f96a3c219b840dc26df34f76e4ab1e (patch) | |
tree | 45cfb08fca76efcce333a7f89cb28f32eea8fab9 /cortex-m-rt/link.x.in | |
parent | f2feeb2595fe8f281a50d63055c65d6ac064ae11 (diff) | |
download | cortex-m-3e8a5beec5f96a3c219b840dc26df34f76e4ab1e.tar.gz cortex-m-3e8a5beec5f96a3c219b840dc26df34f76e4ab1e.tar.zst cortex-m-3e8a5beec5f96a3c219b840dc26df34f76e4ab1e.zip |
Fix cortex-m-rt qemu test by removing 'nomem' from semihosting_syscall asm, add inline to most cortex_m::asm methods
Diffstat (limited to 'cortex-m-rt/link.x.in')
-rw-r--r-- | cortex-m-rt/link.x.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cortex-m-rt/link.x.in b/cortex-m-rt/link.x.in index 92004b7..deff376 100644 --- a/cortex-m-rt/link.x.in +++ b/cortex-m-rt/link.x.in @@ -66,6 +66,8 @@ SECTIONS /* ### Vector table */ .vector_table ORIGIN(FLASH) : { + __vector_table = .; + /* Initial Stack Pointer (SP) value */ LONG(_stack_start); |