always @(posedge clk)
begin
if(!reset)
begin
counter <= 0;
end
else
counter <= counter + 1;
end
always @(posedge counter[18] or negedge txbusy)
begin
if(!reset)
begin
daout <= 8'h00;
end
else if(!txbusy)
begin
wr <= 0;
end
else
begin
wr <= 0;
daout <= daout + 1;
end
end
错误为:
@E: test.v(33): The logic for daout[7:0] does not match a standard flip-flop @E:"e:\xilinx\bin\mylearning\test1\uart\test.v":33:0:33:6
1 Verilog Compiler error