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
11 lines
238 B
Makefile
11 lines
238 B
Makefile
COPTS = -c -W3 -D_X86_=1 -DWIN32 -Z7 -Od -Gs
|
|
|
|
all: demoport.dll
|
|
|
|
demoport.dll: demoport.obj simul.obj
|
|
link -dll -debug:full -debugtype:cv -out:demoport.dll demoport.obj simul.obj -def:demoport.def
|
|
|
|
.c.obj: ; cl $(COPTS) $*.c
|
|
|
|
|