diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-03 19:05:10 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-03 19:05:10 +0100 |
commit | 1ff268ab13dd299c4cdc1e379df5397bd6a394e3 (patch) | |
tree | 014db93062f26cdfe2d2639fd833afd554e94a66 /cpu/Makefile | |
parent | c46fe12e47c405fbb03f0c93121402d873bc470e (diff) | |
download | SystDigit-Projet-1ff268ab13dd299c4cdc1e379df5397bd6a394e3.tar.gz SystDigit-Projet-1ff268ab13dd299c4cdc1e379df5397bd6a394e3.zip |
Added simulator monitor tool.
Diffstat (limited to 'cpu/Makefile')
-rw-r--r-- | cpu/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpu/Makefile b/cpu/Makefile index 1ab6397..ed59bb5 100644 --- a/cpu/Makefile +++ b/cpu/Makefile @@ -5,9 +5,10 @@ AUXILLARY=alu.ml SCHED=../sched/main.native SIM=../csim/csim +MON=../monitor/mon all: _build/cpu_opt.dumb - $(SIM) -rom ROM0 prog_rom0.rom $< + $(MON) $(SIM) -n 8 -rom ROM0 prog_rom0.rom $< %.sim: _build/%.dumb $(SIM) $< |