diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-06 19:22:00 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-06 19:22:00 +0100 |
commit | 818f81108fa30cd5a90c99df955f811fed043993 (patch) | |
tree | 1c0bc35a07a3443deb8bdceeaab3725af7284893 /csim | |
parent | ad529541bf54d9a4339a7371208b7d328c0a449a (diff) | |
download | SystDigit-Projet-818f81108fa30cd5a90c99df955f811fed043993.tar.gz SystDigit-Projet-818f81108fa30cd5a90c99df955f811fed043993.zip |
Documented the C simulator in the README file ; added a test file.
Diffstat (limited to 'csim')
-rw-r--r-- | csim/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csim/Makefile b/csim/Makefile index c94bee2..cc88ac3 100644 --- a/csim/Makefile +++ b/csim/Makefile @@ -2,4 +2,4 @@ csim: main.o load.o sim.o gcc -o csim $^ %.o: %.c - gcc -c $< -o $@ -g + gcc -c $< -o $@ -O2 -g |