mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-22 19:17:55 +00:00
initial import
This commit is contained in:
commit
7764d0ba1d
481 changed files with 54634 additions and 0 deletions
65
tests/simple/process.v
Normal file
65
tests/simple/process.v
Normal file
|
@ -0,0 +1,65 @@
|
|||
|
||||
module uut(clk, arst, a, b, c, d, e, f, out1);
|
||||
|
||||
input clk, arst, a, b, c, d, e, f;
|
||||
output reg [3:0] out1;
|
||||
|
||||
always @(posedge clk, posedge arst) begin
|
||||
if (arst)
|
||||
out1 = 0;
|
||||
else begin
|
||||
if (a) begin
|
||||
case ({b, c})
|
||||
2'b00:
|
||||
out1 = out1 + 9;
|
||||
2'b01, 2'b10:
|
||||
out1 = out1 + 13;
|
||||
endcase
|
||||
if (d) begin
|
||||
out1 = out1 + 2;
|
||||
out1 = out1 + 1;
|
||||
end
|
||||
case ({e, f})
|
||||
2'b11:
|
||||
out1 = out1 + 8;
|
||||
2'b00:
|
||||
;
|
||||
default:
|
||||
out1 = out1 + 10;
|
||||
endcase
|
||||
out1 = out1 ^ 7;
|
||||
end
|
||||
out1 = out1 + 14;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule
|
||||
|
||||
// -------------------------------------------------------------
|
||||
|
||||
// extracted from ../asicworld/code_hdl_models_uart.v
|
||||
// (triggered a bug in the proc_mux pass)
|
||||
module uart (reset, txclk, ld_tx_data, tx_empty, tx_cnt);
|
||||
|
||||
input reset;
|
||||
input txclk;
|
||||
input ld_tx_data;
|
||||
|
||||
output reg tx_empty;
|
||||
output reg [3:0] tx_cnt;
|
||||
|
||||
always @ (posedge txclk)
|
||||
if (reset) begin
|
||||
tx_empty <= 1;
|
||||
tx_cnt <= 0;
|
||||
end else begin
|
||||
if (ld_tx_data) begin
|
||||
tx_empty <= 0;
|
||||
end
|
||||
if (!tx_empty) begin
|
||||
tx_cnt <= tx_cnt + 1;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue