多通道 移位寄存器 verilog
摘要:// Quartus II Verilog Template// Basic 64-stage shift register with multiple tapsmodule basic_shift_register_with_multiple_taps#(parameter WIDTH=8, parameter LENGTH=64)( input clk, enable, input [WIDTH-1:0] sr_in, output [WIDTH-1:0] sr_tap_one, sr_tap_two, sr_tap_three, sr_out); // Declare the shift
阅读全文
posted @ 2013-09-04 15:34
浙公网安备 33010602011771号