Add utils.cpp to build

This commit is contained in:
tuz358
2018-03-04 11:33:33 +09:00
parent 781d36ced5
commit 7f0fbcfa89

View File

@@ -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)