• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Logic Design
  3. RC compiler issue with vlog2001

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 61
  • Views 13163
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

RC compiler issue with vlog2001

archive
archive over 18 years ago

Hi
A verilog source file has the following code for inferring a flop with asynchronous reset on posedge
always @ (posedge clk or posedge rst)
  q[SIZE-1:0] 
 
The above is valid vlog2001 syntax. Unfortunately the RTL compiler is erroring out with the following message.

Error   : An 'if' statement is required at the top of an always block to infer a latch or flip-flop. [VLOGPT-46] [_read_hdl]
        : in file 'swrvr_clib.v' on line 419, column 3.
        : The supported syntax for asynchronous set-reset on a flop-flop is:
    reg data_out;
    always @(posedge clock or posedge reset)
        if ( reset )
            data_out = 1'b1;
        else
            data_out = 1'b0.

Does RTLC not infer flops in case of vlog2001? Changing the source code is not an option.
I was wondering if a user-option had been left out in the config file.

Appreciate any help in this matter
-Sudeep


Originally posted in cdnusers.org by sudeep_ghosh
  • Cancel
  • archive
    archive over 18 years ago

    Hi Sudeep,
    That style of coding for flip-flop is not supported for synthesis. Please view the HDL Modelling Guider here: http://sourcelink.cadence.com/docs/files/Release_Info/Docs/rc_hdlmod/rc_hdlmod6.1.2/rc_hdlmodTOC.html


    Originally posted in cdnusers.org by synthman
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information