Stefan,

I also tried to run code coverage on your code using covered and it doesn't
like it.
Every time you do a this:

  generate
      /* verilator lint_off WIDTH */
      if (OPTION_CPU=="CAPPUCCINO") begin : cappuccino
     /* verilator lint_on WIDTH */
     mor1kx_cpu_cappuccino


covered flags a syntax error on the option test statement


ERROR!  syntax error, unexpected STRING,




This will work but its a hack

parameter   CAPPUCCINO ="CAPPUCCINO"

  generate
      /* verilator lint_off WIDTH */
      if (OPTION_CPU==CAPPUCCINO) begin : cappuccino
     /* verilator lint_on WIDTH */
     mor1kx_cpu_cappuccino



John Eaton
_______________________________________________
OpenRISC mailing list
[email protected]
http://lists.openrisc.net/listinfo/openrisc

Reply via email to