| 
 | 
 
 楼主 |
发表于 2014-3-12 09:42:00
|
显示全部楼层
 
 
 
回复 4# gnoc  
   is it caused by uncorrect map file ? but the module present VDD/VSS pin when i export with the "svaNestlist -phys" command, as following: 
 
 assign OpMode[1] = 1'b0 ; 
   assign OpMode[0] = 1'b0 ; 
 
   // Module instantiations 
   AOI21X4 U4 ( 
    .Y(n7), 
    .B0(tx_valid_last), 
    .A1(n30), 
    .A0(tx_valid_sr),  
    .VDD(VDD),  
    .VSS(VSS)); 
   AND2X2 U20 ( 
    .Y(n9), 
    .B(n6), 
    .A(drive_k),  
    .VDD(VDD),  
    .VSS(VSS)); 
   usbf_utmi_ls u0 ( 
    .clk(phy_clk), 
    .rst(rst), 
    .resume_req(resume_req), 
    .rx_active(rx_active), 
    .tx_ready(tx_ready), 
    .drive_k(drive_k), 
    .XcvSelect(XcvSelect), 
    .TermSel(TermSel), 
    .SuspendM(SuspendM), 
    .LineState({ LineState[1], 
        LineState[0] }), 
    .OpMode(), 
    .usb_vbus(usb_vbus), 
    .mode_hs(mode_hs), 
    .usb_reset(usb_reset), 
    .usb_suspend(usb_suspend), 
    .usb_attached(usb_attached),  
    .VDD(VDD),  
    .VSS(VSS)); |   
 
 
 
 |