1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
// DESCRIPTION: Verilator: Large test for SystemVerilog
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2012.
// SPDX-License-Identifier: CC0-1.0
// Contributed by M W Lund, Atmel Corporation.
//*****************************************************************************
// PAD_GPIO - General Purpose I/O Pad (Dummy!!!!)
//*****************************************************************************
module pad_gpio
#( parameter ID = 0 )
(
input logic pullup_en,
input logic pulldown_en,
input logic output_en,
input logic output_val,
input logic slew_limit_en,
input logic input_en,
output logic input_val,
inout wire ana,
inout wire pad
);
// **** Analog <-> pad connection ****
`ifndef VERILATOR //TODO alias
alias ana = pad;
`endif
// **** Digital driver <-> pad connection ****
assign pad = (output_en) ? output_val : 1'bz;
// **** Digital pull-up/pull-down <-> pad connection ****
// TO BE ADDED!!!!
// **** Digital input <-> pad connection ****
assign input_val = (input_en) ? pad : 1'b0;
endmodule // pad_gpio
|