33. Data Types

Question.8

When compiling the above module, a synthesis error occurs. What is the fundamental root cause of this error regarding data types?

module flip_flop(
    input clk,
    input d,
    output q
);
    always @(posedge clk) begin
        q <= d;
    end
endmodule

 

Need Help? Refer to the Quick Guide below

Select Answer