aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-02-10 12:40:35 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-02-10 12:40:35 +0000
commit17ceacd06e58517962bb5e64dc5208224a38d1ee (patch)
tree664ffbe7f8d834b8a9e844dd2b4ccac9d497641d /makefile
parent276b77d0c30d6de722ab5cb64e96cb78a6f7680e (diff)
downloadMipsCPU-17ceacd06e58517962bb5e64dc5208224a38d1ee.tar.gz
MipsCPU-17ceacd06e58517962bb5e64dc5208224a38d1ee.zip
[code] Updating repository.
Diffstat (limited to 'makefile')
-rwxr-xr-xmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index a5597ae..a47ce96 100755
--- a/makefile
+++ b/makefile
@@ -61,7 +61,7 @@ USER_TEST_OBJECTS = $(patsubst %.cpp,%.o,$(USER_TEST_SRCS))
# - Your test implementation from $(USER_TEST_OBJECTS), including the main function
src/$(LOGIN)/test_mips : $(DEFAULT_OBJECTS) $(USER_CPU_OBJECTS) $(USER_TEST_OBJECTS)
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $^ $(LFLAGS) $(LDLIBS)
-
+
# This is a bonus gift. You may want to try building this
# using:
#
@@ -78,7 +78,7 @@ src/$(LOGIN)/test_mips : $(DEFAULT_OBJECTS) $(USER_CPU_OBJECTS) $(USER_TEST_OBJE
# You may want to look at the corresponding binaries, code, and disassembly
# in the fragments directory.
fragments/run_fibonacci : $(DEFAULT_OBJECTS) $(USER_CPU_OBJECTS)
-
+
# Again, another bonus gift. If you are convinced that your
# program implements addu (and one other instruction) correctly,
# then try running this.