From b3b16c6323d239d31a4659452d3537bf04d543c8 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Wed, 2 Sep 2015 08:14:39 -0400 Subject: [PATCH] kconfig: add NSIM option to arch Kconfig The option is being referended by the same file but is not being defined anywhere. Change-Id: I5e0ec4c29cba773a5256bae52190a117fcc12bf3 Signed-off-by: Anas Nashif --- arch/arc/Kconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig index 82ae74b2426..829098c5338 100644 --- a/arch/arc/Kconfig +++ b/arch/arc/Kconfig @@ -141,6 +141,18 @@ config XIP default n if NSIM default y +config NSIM + prompt "Running on the MetaWare nSIM simulator" + bool + default n + help + For running on nSIM simulator. + a) Uses non-XIP to run in RAM. + b) Linked at address 0x4000 with 0x4000 of RAM so that it works with + a pc_size of 16 (default). + c) Sets the entry point to __reset, since it seems nSIM ignores the + reset vector when starting. + config SW_ISR_TABLE bool prompt "Enable software interrupt handler table"