Browse Source

Makefile: add clean target; fixed Reset_n_i port dir in alu_t.sv

verific_problem
T. Meissner 6 years ago
parent
commit
fca663d7ac
3 changed files with 6 additions and 2 deletions
  1. +1
    -1
      .gitignore
  2. +4
    -0
      alu/Makefile
  3. +1
    -1
      alu/alu_t.sv

+ 1
- 1
.gitignore View File

@ -1 +1 @@
work/*
*/work/*

+ 4
- 0
alu/Makefile View File

@ -1,2 +1,6 @@
alu: alu.vhd alu_t.sv alu_f.sby alu: alu.vhd alu_t.sv alu_f.sby
sby -f -d work alu_f.sby sby -f -d work alu_f.sby
clean:
rm -rf work

+ 1
- 1
alu/alu_t.sv View File

@ -1,5 +1,5 @@
module alu_t ( module alu_t (
inout Reset_n_i,
input Reset_n_i,
input Clk_i, input Clk_i,
input [1:0] Opc_i, input [1:0] Opc_i,
input [31:0] DinA_i, input [31:0] DinA_i,


Loading…
Cancel
Save