From 7f0fbcfa89d4452d599b903224ac63031cd465ac Mon Sep 17 00:00:00 2001 From: tuz358 Date: Sun, 4 Mar 2018 11:33:33 +0900 Subject: [PATCH] Add utils.cpp to build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2f57f7b..1b021ea 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC = g++ CFLAGS = -Wall DEST = /usr/local/bin -OBJS = main.o emulator.o instructions.o memory.o +OBJS = main.o emulator.o instructions.o memory.o utils.o PROGRAM = cpu-emulator $(PROGRAM): $(OBJS)