From d5c1eaa16ebaff548acfb274c9da9291c9710366 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 29 May 2020 15:37:23 +0800 Subject: [PATCH] runtime: remove stack alignment requirement I suppose this was for TMPU, but was never finished. --- artiq/firmware/runtime/runtime.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/firmware/runtime/runtime.ld b/artiq/firmware/runtime/runtime.ld index 67841f91e..a0a884dd2 100644 --- a/artiq/firmware/runtime/runtime.ld +++ b/artiq/firmware/runtime/runtime.ld @@ -65,7 +65,7 @@ SECTIONS _ebss = .; } > runtime - .stack ALIGN(0x1000) : + .stack : { . += 0x4000; _fstack = . - 4;