We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ca9062 commit 16200edCopy full SHA for 16200ed
src/examples/checkers/project.v
@@ -18,7 +18,7 @@ module tt_um_vga_example(
18
);
19
// increase couner every frame (vsync happens once per frame)
20
reg [9:0] counter;
21
- always @(posedge vsync) begin
+ always @(posedge vsync, negedge rst_n) begin
22
if (~rst_n) begin
23
counter <= 0;
24
end else begin
src/examples/stripes/project.v
@@ -55,7 +55,7 @@ module tt_um_vga_example(
55
assign G = video_active ? {moving_x[6], pix_y[2]} : 2'b00;
56
assign B = video_active ? {moving_x[7], pix_y[5]} : 2'b00;
57
58
59
60
61
0 commit comments