From bc7eeb7b013056a86ccaa7a376490e9fb2da97c9 Mon Sep 17 00:00:00 2001 From: Zbigniew Chamski <107464696+zchamski@users.noreply.github.com> Date: Mon, 23 Sep 2024 17:51:14 +0200 Subject: [PATCH] [interrupt verification] Add .uvmif support to global verif linker script (#2507) --- verif/sim/link.ld | 2 ++ 1 file changed, 2 insertions(+) diff --git a/verif/sim/link.ld b/verif/sim/link.ld index d064469c6b..1fe4a63875 100644 --- a/verif/sim/link.ld +++ b/verif/sim/link.ld @@ -24,6 +24,8 @@ SECTIONS . = ALIGN(0x1000); .tohost : { *(.tohost) } . = ALIGN(0x1000); + .uvmif : { *(.uvmif) } + . = ALIGN(0x1000); .text : { *(.text) } . = ALIGN(0x1000); .text.startup : { *(.text.startup) }