dafir1.v

来自「6阶FIR+verliog+分布式算法(DA)」· Verilog 代码 · 共 45 行

V
45
字号
`timescale 1ns / 1ps////////////////////////////////////////////////////////////////////////////////// Company: // Engineer://// Create Date:    16:19:53 10/11/07// Design Name:    谢大钊// Module Name:    dafir// Project Name:   // Target Device:  // Tool versions:  // Description://// Dependencies:// // Revision:// Revision 0.01 - File Created// Additional Comments:// ////////////////////////////////////////////////////////////////////////////////module dafir1(table_in, table_out);  input  [2:0] table_in;     output [3:0] table_out;   reg [3:0] table_out;   always @(table_in)  begin    case (table_in)      0 :     table_out =  0;      1 :     table_out =  2;      2 :     table_out =  -1;      3 :     table_out =  1;      4 :     table_out =  3;      5 :     table_out =  5;      6 :     table_out =  2;      7 :     table_out =  4;      default : ;    endcase  endendmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?