Clear out linter warnings

This commit is contained in:
Yannick Reiß 2024-03-18 21:48:27 +01:00
parent fa5e260576
commit 667cb579da
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
1 changed files with 8 additions and 8 deletions

View File

@ -20,7 +20,7 @@ module tt_um_yannickreiss_lights_out (
assign uio_oe = 8'b00000010; assign uio_oe = 8'b00000010;
// Matrix (input) // Matrix (input)
wire [8:0] buttons = ui_in[7:0] & uio_in[0]; wire [8:0] buttons = {ui_in[7:0], uio_in[0]};
// Matrix (current field) // Matrix (current field)
reg field1; reg field1;
@ -112,13 +112,13 @@ module tt_um_yannickreiss_lights_out (
// set new matrix in a pseudo random way // set new matrix in a pseudo random way
field1 <= clk; field1 <= clk;
field2 <= !clk; field2 <= uio_in[7];
field3 <= clk; field3 <= uio_in[6];
field4 <= !clk; field4 <= uio_in[5];
field5 <= clk; field5 <= uio_in[4];
field6 <= clk; field6 <= uio_in[3];
field7 <= !clk; field7 <= uio_in[2];
field8 <= clk; field8 <= uio_in[1];
field9 <= !clk; field9 <= !clk;
end end
end end