• 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. cadence Digital design

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 65
  • Views 10132
  • 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

cadence Digital design

blossom
blossom over 2 years ago

Hello everyone,

Good morning all,

 while I was pasting the command in scriipt file, i have the following error.

cadence@cad07 xorgate]$ genus _f script.tcl
bash: genus: command not found...

code:

module XOR_Gate(
  input A,
  input B,
  output Y);
 
  assign Y = ~A&&B || A&&~B;
 
endmodule

Test_code:

// Code your testbench here
// or browse Examples
module XOR_Gate_tb;
  reg A;
  reg B;
  wire Y;
  integer i;
 
  XOR_Gate inst(.A(A), .B(B), .Y(Y));
 
  initial begin
    $dumpfile("dump.vcd");
    $dumpvars;
    #100 $finish;
  end
 
  initial
    begin
      A <= 0;
      B <= 0;
      $monitor ("A=%0b B=%0b Y=%0b", A, B, Y);
      for (i=0; i< 4; i= i + 1)
        begin
          {A, B} = i;
      #10;
        end
    end
   
endmodule

  • Cancel
  • MTYM
    MTYM over 2 years ago

    It appears you do not have genus in your executable path.

    type which genus to your shell.  I suspect it will return nothing;


    cadence@cad07 xorgate]$ which genus

    Then type echo $PATH
    and it will tell you the directories that are in your path.  Likely you are missing the one where the Cadence tools are installed.  Likely your CAD manager can help you out.

    cadence@cad07 xorgate]$ echo $PATH
    /bin:/usr/bin:/sbin:/usr/sbin:/usr/X11/bin:/usr/local/bin



    • 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