1 |
2 |
dgisselq |
################################################################################
|
2 |
|
|
#
|
3 |
|
|
# Filename: Makefile
|
4 |
|
|
#
|
5 |
|
|
# Project: Zip CPU -- a small, lightweight, RISC CPU soft core
|
6 |
|
|
#
|
7 |
|
|
# Purpose: This makefile builds the final verilator simulation of the
|
8 |
|
|
# zipsystem. Specifically, it builds the final C++ portion
|
9 |
|
|
# of the simulator, and thus the final simulator executable.
|
10 |
|
|
#
|
11 |
|
|
# This simulator depends upon the ncurses library.
|
12 |
|
|
#
|
13 |
|
|
#
|
14 |
|
|
# Creator: Dan Gisselquist, Ph.D.
|
15 |
|
|
# Gisselquist Tecnology, LLC
|
16 |
|
|
#
|
17 |
|
|
################################################################################
|
18 |
|
|
#
|
19 |
|
|
# Copyright (C) 2015, Gisselquist Technology, LLC
|
20 |
|
|
#
|
21 |
|
|
# This program is free software (firmware): you can redistribute it and/or
|
22 |
|
|
# modify it under the terms of the GNU General Public License as published
|
23 |
|
|
# by the Free Software Foundation, either version 3 of the License, or (at
|
24 |
|
|
# your option) any later version.
|
25 |
|
|
#
|
26 |
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
27 |
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
28 |
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
29 |
|
|
# for more details.
|
30 |
|
|
#
|
31 |
|
|
# License: GPL, v3, as defined and found on www.gnu.org,
|
32 |
|
|
# http://www.gnu.org/licenses/gpl.html
|
33 |
|
|
#
|
34 |
|
|
#
|
35 |
|
|
################################################################################
|
36 |
|
|
#
|
37 |
|
|
all: zippy_tb
|
38 |
|
|
|
39 |
|
|
CXX := g++
|
40 |
|
|
FLAGS := -Wall -Og -g
|
41 |
|
|
ZASM := ../../sw/zasm
|
42 |
|
|
INCS := -I../../rtl/obj_dir/ -I/usr/share/verilator/include -I../../sw/zasm
|
43 |
|
|
SOURCES := zippy_tb.cpp memsim.cpp twoc.cpp $(ZASM)/zopcodes.cpp $(ZASM)/zparser.cpp
|
44 |
|
|
RAWLIB := /usr/share/verilator/include/verilated.cpp ../../rtl/obj_dir/Vzipsystem__ALL.a
|
45 |
|
|
LIBS := $(RAWLIB) -lncurses
|
46 |
|
|
|
47 |
|
|
zippy_tb: $(SOURCES) $(RAWLIB) $(ZASM)/zopcodes.h $(ZASM)/zparser.h
|
48 |
|
|
$(CXX) $(FLAGS) $(INCS) $(SOURCES) $(LIBS) -o $@
|
49 |
|
|
|