| // Automatically edited by removePhraseFromMultipleFiles.pl |
| // iptguser Thu Aug 25 16:08:57 EDT 2011 |
| // `suppress_faults;`enable_portfaults\n |
| // `ifdef TETRAMAX;`endif\n |
| // `ifdef functional;`timescale |
| // `ifndef dont_change_delay_mode;`endif\n |
| // `ifndef dont_change_delay_mode;`else\n |
| // `ifndef dont_change_delay_mode;`endif\n |
| // `endif;\n |
| // `disable_portfaults;`nosuppress_faults |
| |
| // Automatically modified by replacePGwithIfDef.pl |
| // iptguser Thu Aug 25 14:39:12 EDT 2011 |
| |
| `celldefine |
| |
| |
| `timescale 1ns / 1ps |
| |
| module scs8ms_dfxtp_4 ( |
| |
| output Q, |
| input CLK, |
| input D |
| |
| `ifdef SC_USE_PG_PIN |
| , |
| input vpwr, |
| input vgnd, |
| input vpb, |
| input vnb |
| `endif |
| |
| ); |
| |
| `ifdef functional |
| `else |
| `ifdef SC_USE_PG_PIN |
| `else |
| supply1 vpwr; |
| supply0 vgnd; |
| supply1 vpb; |
| supply0 vnb; |
| `endif |
| `endif |
| |
| |
| wire buf_Q; |
| |
| `ifdef functional |
| `ifdef SC_USE_PG_PIN |
| scs8ms_pg_U_DF_P_NO_pg #0.001 ( buf_Q , D , CLK , , vpwr , vgnd ) ; |
| `else |
| scs8ms_pg_U_DF_P #0.001 ( buf_Q , D , CLK ) ; |
| `endif |
| `else |
| reg notifier ; |
| wire D_delayed; |
| wire CLK_delayed; |
| scs8ms_pg_U_DF_P_NO_pg ( buf_Q , D_delayed , CLK_delayed , notifier , vpwr , vgnd ) ; |
| |
| wire AWAKE; |
| assign AWAKE = ( vpwr === 1'b1 ) ; |
| specify |
| ( posedge CLK => ( Q : CLK ) ) = ( 0:0:0 , 0:0:0 ) ; // delays are tris , tfall |
| $width ( posedge CLK &&& AWAKE , 1.0:1.0:1.0 , 0 , notifier ) ; |
| $width ( negedge CLK &&& AWAKE , 1.0:1.0:1.0 , 0 , notifier ) ; |
| $setuphold ( posedge CLK , posedge D , 0:0:0 , 0:0:0 , notifier , AWAKE , AWAKE , CLK_delayed , D_delayed ) ; |
| $setuphold ( posedge CLK , negedge D , 0:0:0 , 0:0:0 , notifier , AWAKE , AWAKE , CLK_delayed , D_delayed ) ; |
| endspecify |
| `endif |
| |
| buf ( Q , buf_Q ) ; |
| |
| endmodule |
| `endcelldefine |