mirror of
https://github.com/verilator/verilator.git
synced 2025-01-07 15:17:36 +00:00
54bc8608e3
Signed-off-by: Wilson Snyder <wsnyder@wsnyder.org>
29 lines
725 B
Verilog
29 lines
725 B
Verilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2017 by Todd Strader.
|
|
|
|
module t;
|
|
|
|
localparam P6 = f_add(5, 1);
|
|
localparam P14 = f_add2(2, 3, f_add(4, 5));
|
|
localparam P24 = f_add2(7, 8, 9);
|
|
|
|
initial begin
|
|
// Should never get here
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
|
|
function integer f_add(input [31:0] a, input [31:0] b);
|
|
f_add = a+b;
|
|
if (f_add == 15)
|
|
$fatal(2, "f_add = 15");
|
|
endfunction
|
|
|
|
// Speced ok: function called from function
|
|
function integer f_add2(input [31:0] a, input [31:0] b, input [31:0] c);
|
|
f_add2 = f_add(a,b)+c;
|
|
endfunction
|
|
endmodule
|