3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-11-01 03:57:52 +00:00

Fix warnings

This commit is contained in:
Eddie Hung 2019-12-31 18:40:11 -08:00
parent c082329af3
commit a59016b146
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
Example from: https://www.latticesemi.com/-/media/LatticeSemi/Documents/UserManuals/EI/iCEcube201701UserGuide.ashx?document_id=52071 [p. 74].
*/
module top(data, addr);
output [3:0] data;
output reg [3:0] data;
input [4:0] addr;
always @(addr) begin
case (addr)