T32 Simulator: Basic Instruction set sim for ARMM3
The T32 can simulate bare instruction sets without periphery. For the Cortex-M3 we have complete NVIC model including Systick Timer. Currently a simple CiAO can run on the simulator. TODO: - Let memlogger log all memory accesses. - Interact with FailT32 for a complete simulation/FI
This commit is contained in:
10
debuggers/t32/sim/memlogger/CMakeLists.txt
Normal file
10
debuggers/t32/sim/memlogger/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
||||
# NVIC simulation model for the T32
|
||||
set(SRCS
|
||||
memlogger.c
|
||||
../include/simul.c
|
||||
)
|
||||
|
||||
add_library(memlogger SHARED ${SRCS})
|
||||
GET_TARGET_PROPERTY(__T32_MEMLOGGER_LIB memlogger LOCATION)
|
||||
SET(T32_MEMLOGGER_LIB "${__T32_MEMLOGGER_LIB}" CACHE INTERNAL "")
|
||||
|
||||
Reference in New Issue
Block a user