• 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. Custom IC Design
  3. Error during snapshots launch simulator

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 125
  • Views 7837
  • 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

Error during snapshots launch simulator

blossom
blossom over 3 years ago

By selecting test module  in snapshots  for  simulating the fulladder program , I have the follwing error.

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

 ERROR;

ncsim: *F,NOLICN: Unable to checkout license for the simulation. Use ncsim -MESSAGES for more information. (flag - 2) 'lic_error -15'.
ncsim: Memory Usage - 38.6M program + 20.3M data = 58.9M total (59.4M Peak)
ncsim: CPU Usage - 0.0s system + 0.0s user = 0.0s total (30.1s, 0.0% cpu)
ncsim -gui -cdslib /home/cadence/fa/faac.lib -logfile /home/cadence/fa/ncsim.log -errormax 15 -status worklib.fa_test:module
nclaunch> ncsim(64): 15.20-s051: (c) Copyright 1995-2018 Cadence Design Systems, Inc.

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

There is a pop-up window to simulate the program. but I didn't get.

   --------

Program

module fa(a,b,c,s,cout);
input a,b,c;
output s,cout;
assign s= a^b^c;
assign cout=(a&b)|(b&c)|(c&a);
endmodule

Testbench program

module fa_test;
reg a,b,c;
wire s,cout;
integer correct;
fa fulladder(a,b,c,s,cout);
initial
begin
correct=1;
#5 a=1; b=1;c=0; #5;
if((s!=0) || (cout!=1))
correct=0;
#5 a=1; b=1;c=1; #5;
if((s!=1) || (cout!=1))
correct=0;
#5 a=0; b=1;c=0; #5;
if((s!=1) || (cout!=0))
correct=0;
#5 $display ("%d", correct);
end
endmodule


 

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 3 years ago

    OK, you have an old INCISIVE release, but it's telling you that you don't have a license. We're not going to be able to solve this here. You'll need to contact your account team or customer support.

    Andrew

    • 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