################################################################################
|
################################################################################
|
#
|
#
|
# Filename: Makefile
|
# Filename: Makefile
|
#
|
#
|
# Project: Zip CPU -- a small, lightweight, RISC CPU soft core
|
# Project: Zip CPU -- a small, lightweight, RISC CPU soft core
|
#
|
#
|
# Purpose: This makefile builds a verilator simulation of the zipsystem.
|
# Purpose: This makefile builds a verilator simulation of the zipsystem.
|
# It does not make the system within Vivado or Quartus.
|
# It does not make the system within Vivado or Quartus.
|
#
|
#
|
#
|
#
|
# Creator: Dan Gisselquist, Ph.D.
|
# Creator: Dan Gisselquist, Ph.D.
|
# Gisselquist Technology, LLC
|
# Gisselquist Technology, LLC
|
#
|
#
|
################################################################################
|
################################################################################
|
#
|
#
|
# Copyright (C) 2015, Gisselquist Technology, LLC
|
# Copyright (C) 2015, Gisselquist Technology, LLC
|
#
|
#
|
# This program is free software (firmware): you can redistribute it and/or
|
# This program is free software (firmware): you can redistribute it and/or
|
# modify it under the terms of the GNU General Public License as published
|
# modify it under the terms of the GNU General Public License as published
|
# by the Free Software Foundation, either version 3 of the License, or (at
|
# by the Free Software Foundation, either version 3 of the License, or (at
|
# your option) any later version.
|
# your option) any later version.
|
#
|
#
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
# ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
# ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
# for more details.
|
# for more details.
|
#
|
#
|
# License: GPL, v3, as defined and found on www.gnu.org,
|
# License: GPL, v3, as defined and found on www.gnu.org,
|
# http://www.gnu.org/licenses/gpl.html
|
# http://www.gnu.org/licenses/gpl.html
|
#
|
#
|
#
|
#
|
################################################################################
|
################################################################################
|
#
|
#
|
.PHONY: all
|
.PHONY: all
|
all: zipsystem zipbones cpudefs.h div
|
all: zipsystem zipbones cpudefs.h div
|
|
|
CORED:= core
|
CORED:= core
|
PRPHD:= peripherals
|
PRPHD:= peripherals
|
AUXD := aux
|
AUXD := aux
|
VSRC := zipsystem.v cpudefs.v \
|
VSRC := zipsystem.v cpudefs.v \
|
$(PRPHD)/wbdmac.v $(PRPHD)/icontrol.v \
|
$(PRPHD)/wbdmac.v $(PRPHD)/icontrol.v \
|
$(PRPHD)/zipcounter.v $(PRPHD)/zipjiffies.v \
|
$(PRPHD)/zipcounter.v $(PRPHD)/zipjiffies.v \
|
$(PRPHD)/ziptimer.v $(PRPHD)/ziptrap.v \
|
$(PRPHD)/ziptimer.v $(PRPHD)/ziptrap.v \
|
$(CORED)/zipcpu.v $(CORED)/cpuops.v $(CORED)/idecode.v \
|
$(CORED)/zipcpu.v $(CORED)/cpuops.v $(CORED)/idecode.v \
|
$(CORED)/pipefetch.v $(CORED)/prefetch.v \
|
$(CORED)/pipefetch.v $(CORED)/prefetch.v \
|
$(CORED)/pfcache.v \
|
$(CORED)/pfcache.v \
|
$(CORED)/memops.v $(CORED)/pipemem.v \
|
$(CORED)/memops.v $(CORED)/pipemem.v \
|
$(AUXD)/busdelay.v \
|
$(AUXD)/busdelay.v \
|
$(AUXD)/wbdblpriarb.v $(AUXD)/wbpriarbiter.v \
|
$(AUXD)/wbdblpriarb.v $(AUXD)/wbpriarbiter.v \
|
$(CORED)/idecode.v $(CORED)/cpuops.v
|
$(CORED)/idecode.v $(CORED)/cpuops.v
|
VZIP := zipbones.v cpudefs.v \
|
VZIP := zipbones.v cpudefs.v \
|
$(CORED)/zipcpu.v $(CORED)/cpuops.v $(CORED)/idecode.v \
|
$(CORED)/zipcpu.v $(CORED)/cpuops.v $(CORED)/idecode.v \
|
$(CORED)/pipefetch.v $(CORED)/prefetch.v \
|
$(CORED)/pipefetch.v $(CORED)/prefetch.v \
|
$(CORED)/pfcache.v \
|
$(CORED)/pfcache.v \
|
$(CORED)/memops.v $(CORED)/pipemem.v \
|
$(CORED)/memops.v $(CORED)/pipemem.v \
|
$(AUXD)/busdelay.v $(AUXD)/wbdblpriarb.v \
|
$(AUXD)/busdelay.v $(AUXD)/wbdblpriarb.v \
|
$(CORED)/idecode.v $(CORED)/cpuops.v
|
$(CORED)/idecode.v $(CORED)/cpuops.v
|
|
|
VOBJ := obj_dir
|
VOBJ := obj_dir
|
|
|
$(VOBJ)/Vzipsystem.cpp: $(VSRC)
|
$(VOBJ)/Vzipsystem.cpp: $(VSRC)
|
verilator -cc -y $(CORED) -y $(PRPHD) -y $(AUXD) zipsystem.v
|
verilator -cc -y $(CORED) -y $(PRPHD) -y $(AUXD) zipsystem.v
|
$(VOBJ)/Vzipsystem.h: $(VOBJ)/Vzipsystem.cpp
|
$(VOBJ)/Vzipsystem.h: $(VOBJ)/Vzipsystem.cpp
|
|
|
$(VOBJ)/Vzipbones.cpp: $(VZIP)
|
$(VOBJ)/Vzipbones.cpp: $(VZIP)
|
verilator -cc -y $(CORED) -y $(PRPHD) -y $(AUXD) zipbones.v
|
verilator -cc -y $(CORED) -y $(PRPHD) -y $(AUXD) zipbones.v
|
$(VOBJ)/Vzipbones.h: $(VOBJ)/Vzipbones.cpp
|
$(VOBJ)/Vzipbones.h: $(VOBJ)/Vzipbones.cpp
|
|
|
$(VOBJ)/Vdiv.cpp: $(CORED)/div.v
|
$(VOBJ)/Vdiv.cpp: $(CORED)/div.v
|
verilator -cc -y $(CORED) -y $(PRPHD) -y $(AUXD) $(CORED)/div.v
|
verilator -cc -y $(CORED) -y $(PRPHD) -y $(AUXD) $(CORED)/div.v
|
$(VOBJ)/Vdiv.h: $(VOBJ)/Vdiv.cpp
|
$(VOBJ)/Vdiv.h: $(VOBJ)/Vdiv.cpp
|
|
|
$(VOBJ)/Vzipsystem__ALL.a: $(VOBJ)/Vzipsystem.cpp $(VOBJ)/Vzipsystem.h
|
$(VOBJ)/Vzipsystem__ALL.a: $(VOBJ)/Vzipsystem.cpp $(VOBJ)/Vzipsystem.h
|
cd $(VOBJ); make --no-print-directory -f Vzipsystem.mk
|
cd $(VOBJ); make --no-print-directory -f Vzipsystem.mk
|
|
|
$(VOBJ)/Vzipbones__ALL.a: $(VOBJ)/Vzipbones.cpp $(VOBJ)/Vzipbones.h
|
$(VOBJ)/Vzipbones__ALL.a: $(VOBJ)/Vzipbones.cpp $(VOBJ)/Vzipbones.h
|
cd $(VOBJ); make --no-print-directory -f Vzipbones.mk
|
cd $(VOBJ); make --no-print-directory -f Vzipbones.mk
|
|
|
$(VOBJ)/Vdiv__ALL.a: $(VOBJ)/Vdiv.cpp $(VOBJ)/Vdiv.h
|
$(VOBJ)/Vdiv__ALL.a: $(VOBJ)/Vdiv.cpp $(VOBJ)/Vdiv.h
|
cd $(VOBJ); make --no-print-directory -f Vdiv.mk
|
cd $(VOBJ); make --no-print-directory -f Vdiv.mk
|
|
|
cpudefs.h: cpudefs.v
|
cpudefs.h: cpudefs.v
|
@echo "Building cpudefs.h"
|
@echo "Building cpudefs.h"
|
@echo "// " > $@
|
@echo "// " > $@
|
@echo "// Do not edit this file, it is automatically generated!" >> $@
|
@echo "// Do not edit this file, it is automatically generated!" >> $@
|
|
@echo "// To generate this file, \"make cpudefs.h\" in the rtl directory." >> $@
|
@echo "// " >> $@
|
@echo "// " >> $@
|
@grep "^\`" $^ | sed -e '{ s/^`/#/ }' >> $@
|
@grep "^\`" $^ | sed -e '{ s/^`/#/ }' >> $@
|
|
|
.PHONY: zipsystem
|
.PHONY: zipsystem
|
zipsystem: $(VOBJ)/Vzipsystem__ALL.a
|
zipsystem: $(VOBJ)/Vzipsystem__ALL.a
|
|
|
.PHONY: zipbones
|
.PHONY: zipbones
|
zipbones: $(VOBJ)/Vzipbones__ALL.a
|
zipbones: $(VOBJ)/Vzipbones__ALL.a
|
|
|
.PHONY: div
|
.PHONY: div
|
div: $(VOBJ)/Vdiv__ALL.a
|
div: $(VOBJ)/Vdiv__ALL.a
|
|
|
.PHONY: clean
|
.PHONY: clean
|
clean:
|
clean:
|
rm -rf $(VOBJ) cpudefs.h
|
rm -rf $(VOBJ) cpudefs.h
|
|
|