Skip to content

Minor fix: dff8 reference design #8

Closed
@luca-valente

Description

@luca-valente

Hello,

I found a minor issue with the dff8 reference design.

The reference solution implements a

  initial
    q = 8'h0;

which makes the test fail when the LLM's answer is simply

module top_module (
  input clk,
  input [7:0] d,
  output reg [7:0] q
);

  always @(posedge clk)
    q <= d;

endmodule

which in my opinion is correct.

Thank you for your attention!!

Luca

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions