AAPLAIOH33.v
474 Bytes
// VERSION:1.00 DATE:2002/04/11 OpenCAD Verilog LIBRARY
`timescale 1ps / 1ps
`celldefine
`ifdef verifault
`suppress_faults
`enable_portfaults
`endif
module AAPLAIOH33 ( AVDD1, AGND1, AVDD, AGND );
input AVDD;
input AGND;
output AVDD1;
output AGND1;
buf ( _AVDD, AVDD );
buf ( _AGND, AGND );
buf ( AVDD1, _AVDD );
buf ( AGND1, _AGND );
endmodule
`ifdef verifault
`nosuppress_faults
`disable_portfaults
`endif
`endcelldefine