mirror of
https://github.com/verilator/verilator.git
synced 2025-01-07 15:17:36 +00:00
34 lines
766 B
Verilog
34 lines
766 B
Verilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2016 by Wilson Snyder
|
|
|
|
module t (/*AUTOARG*/
|
|
// Outputs
|
|
dout,
|
|
// Inputs
|
|
clk, sel, a, c
|
|
);
|
|
|
|
input clk;
|
|
input bit [3:0] sel;
|
|
input bit [3:0] a;
|
|
input bit c;
|
|
output bit dout;
|
|
|
|
localparam logic DC = 1'b?;
|
|
|
|
always_ff @(posedge clk) begin
|
|
unique casez(sel)
|
|
4'b0000: dout <= a[0];
|
|
4'b001?: dout <= a[1];
|
|
{1'b0, 1'b1, 1'b?, 1'b?}: dout <= a[2];
|
|
{1'b1, 1'b?, 1'b?, DC}: dout <= a[3];
|
|
default: dout <= '0;
|
|
endcase
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
|
|
endmodule
|