blob: 467fd14cb00eac5a26c8a1f2a0cb9c5c094db97c [file] [log] [blame]
// Automatically modified by replacePGwithIfDef.pl
// iptguser Thu Aug 18 13:10:18 EDT 2011
// Automatically edited by removePhraseFromMultipleFiles.pl
// iptguser Mon Aug 8 14:40:02 EDT 2011
// \`suppress_faults;^\n
// \`ifdef TETRAMAX;^\n
// \`ifdef functional;\`else
// \`delay_mode_path;^\n
// \`disable_portfaults;\`nosuppress_faults
`celldefine
`timescale 1ns / 1ps
module scs8lp_isolatch_lp (
output Q,
input D,
input SLEEPB
`ifdef SC_USE_PG_PIN
, input kapwr
, input vpwr
, input vgnd
, input vpb
, input vnb
`endif
);
`ifdef functional
`else
`ifdef SC_USE_PG_PIN
`else
supply1 kapwr;
supply1 vpwr;
supply0 vgnd;
supply1 vpb;
supply0 vnb;
`endif
`endif
wire buf_Q;
wire SLEEPB_delayed;
wire D_delayed;
`ifdef functional
`ifdef SC_USE_PG_PIN
scs8lpa_U_DL_ISOLATCH_NO_pg #0.001 ( buf_Q , D , SLEEPB , , kapwr , vgnd , vpwr ) ;
`else
scs8lpa_U_DL_P #0.001 ( buf_Q , D , SLEEPB ) ;
`endif
`else
reg notifier;
scs8lpa_U_DL_ISOLATCH_NO_pg ( buf_Q , D_delayed , SLEEPB_delayed , notifier, kapwr, vgnd, vpwr ) ;
`endif
buf (Q,buf_Q);
`ifdef functional
`else
specify
(D +=> Q ) = (0:0:0,0:0:0); // delays are tris,tfall
(posedge SLEEPB => (Q +: D ) ) = (0:0:0,0:0:0); // delays are tris,tfall
$width (posedge SLEEPB , 0:0:0, 0, notifier);
$width (negedge SLEEPB , 0:0:0, 0, notifier);
$setuphold ( negedge SLEEPB , posedge D , 0:0:0, 0:0:0, notifier , , , SLEEPB_delayed , D_delayed ) ;
$setuphold ( negedge SLEEPB , negedge D , 0:0:0, 0:0:0, notifier , , , SLEEPB_delayed , D_delayed ) ;
endspecify
`endif
endmodule
`endcelldefine