//我这里是要发送5组8位数据给单片机,可能由于FPGA跟单片机电平不同的问题,我建议用检测脉冲的方法来做握手信号
`define UD #1
module senddata(
plase_h,
plase_l,
pinlv,
send_data,
RST_B,
SYSCLK,
mcu_in
);
input [7:0] plase_h;
input [7:0] plase_l;
input [23:0] pinlv;
output [7:0] send_data;
reg [7:0] send_data;
input RST_B;
input SYSCLK ;
input mcu_in ; //mcu_in为FPGA与单片机沟通的信号脉冲 ,每从单片机来一个脉冲,cnt加1计数,从而激发对应数据传输
wire cnt ;
reg cnt1;
reg cnt_N;
always@(posedge mcu_in or negedge RST_B)
begin
if(!RST_B)
cnt1