马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
module latch8(ld,data,shifterdata);
input[7:0] data;
input ld;
output[7:0] shifterdata;
reg[7:0] shifterdata;
always @(posedge ld)
shifterdata<=data;
endmodule
module reciveop_1(framelatchnode,frmclk,e);
input[7:0] framelatchnode;
input frmclk;
output[7:0]e;
reg[7:0] tempe;
reg[7:0] e;
latch8 latch811(.data(framelatchnode[7:0]),.ld(frmclk),.shifterdata(tempe));
e<=tempe ;
endmodule
我在编译的的时候总说有语法错误! |