Verilog 并行数据流转换为一种特殊串行数据流模块的设计
模块M0
`timescale 1ns/100ps
`define clk_cyc 50
module sigdata(rst,data,sclk,ack);
input ack;
output rst;
output [3:0] data;
output sclk;
reg rst;
reg sclk;
reg [3:0] data;
initial
begin
rst <= 1;
...
原创
2020-05-28 20:30:57 ·
1220 阅读 ·
0 评论