From 54c69dd96247492824d0fbb11b92fc716339a79d Mon Sep 17 00:00:00 2001 From: Paul Mathieu Date: Sun, 14 Mar 2021 12:14:55 -0700 Subject: [PATCH] dsp: add missing alu.vhdl in makefile --- dsp/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp/makefile b/dsp/makefile index 6d5da1c..b3fb480 100644 --- a/dsp/makefile +++ b/dsp/makefile @@ -11,7 +11,7 @@ boot_rom.gen.vhdl: main.o ../uart/uart.o sim_sources = dsp_test.vhdl sources = boot_rom.gen.vhdl dsp.vhdl \ - ../cpu/cpu.vhdl ../cpu/reg.vhdl \ + ../cpu/cpu.vhdl ../cpu/reg.vhdl ../cpu/alu.vhdl \ $(wildcard ../wave/*.vhdl) \ $(wildcard ../sysbus/*.vhdl) \ ../uart/uart.vhdl \