From fca663d7ace4f57d3b6bcd867733a179e8b8aede Mon Sep 17 00:00:00 2001 From: tmeissner Date: Tue, 13 Nov 2018 00:22:05 +0100 Subject: [PATCH] Makefile: add clean target; fixed Reset_n_i port dir in alu_t.sv --- .gitignore | 2 +- alu/Makefile | 4 ++++ alu/alu_t.sv | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c0e8fb5..bcabfa7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -work/* \ No newline at end of file +*/work/* diff --git a/alu/Makefile b/alu/Makefile index d1c6b73..b884e4a 100644 --- a/alu/Makefile +++ b/alu/Makefile @@ -1,2 +1,6 @@ alu: alu.vhd alu_t.sv alu_f.sby sby -f -d work alu_f.sby + + +clean: + rm -rf work diff --git a/alu/alu_t.sv b/alu/alu_t.sv index 6b35426..2f98064 100644 --- a/alu/alu_t.sv +++ b/alu/alu_t.sv @@ -1,5 +1,5 @@ module alu_t ( - inout Reset_n_i, + input Reset_n_i, input Clk_i, input [1:0] Opc_i, input [31:0] DinA_i,