verilator/test_regress/t/t_interface_top_bad.v
2013-05-27 21:39:19 -04:00

22 lines
429 B
Verilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2010 by Wilson Snyder.
interface ifc;
logic [3:0] value;
logic reset;
modport counter_mp (input reset, output value);
modport core_mp (output reset, input value);
endinterface
module t
(// Inputs
input clk,
ifc.counter_mp c_data
);
integer cyc=1;
endmodule