2009-12-03 11:55:29 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
|
|
|
// Copyright 2009 by Wilson Snyder. This program is free software; you can
|
|
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
// Version 2.0.
|
|
|
|
|
|
|
|
module t ();
|
|
|
|
|
2017-08-11 23:07:47 +00:00
|
|
|
// Can't handle time (yet?)
|
2017-12-10 01:17:37 +00:00
|
|
|
import "DPI-C" dpii_fa_bit = function logic [2:0] oth_f_int1(input time i);
|
2009-12-03 11:55:29 +00:00
|
|
|
|
|
|
|
initial begin
|
|
|
|
$stop;
|
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|