LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Sponsors
  • Mirrors
  • Logos
  • Contact us
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Usb > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: mdennis97@h...
    Date: Sat, 17 May 2003 18:28:12 -0100
    Subject: Re: [usb] Please help with a USB DPLL
    Top

    hi, Mr. rudi:
    
    I am not so clear about the following code in usb_rx_phy.Maybe there 
    are some special functions that I didn't grasp:
    
    // Compensate for sync registers at the input - allign full speed
    // clock enable to be in the middle between two bit changes ...
    always @(posedge clk)
    	fs_ce_r1 <= #1 fs_ce_d;
    
    always @(posedge clk)
    	fs_ce_r2 <= #1 fs_ce_r1;
    
    always @(posedge clk)
    	fs_ce_r3 <= #1 fs_ce_r2;
    
    always @(posedge clk)
    	fs_ce <= #1 fs_ce_r3;
    
    Can I replace them with "assign fs_ce = fs_ce_d;"? If not, why?
    
    
    Regards
    
    Dennis
    
    
    

    Follow upAuthor
    Re: [usb] Please help with a USB DPLLRudolf Usselmann

     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.