Questions tagged [specman]

Specman is a simulator for `e` (IEEE 1647), an Aspect Oriented Programming (AOP) hardware verification language that enables constrained-random stimulus generation and coverage.

Specman is and EDA tool from Cadence Design Systems that provides an environment for working with, compiling, and debugging testbench environments written in the e language. See also

http://www.cadence.com/products/fv/enterprise_specman_elite

261 questions
0
votes
1 answer

How can I call a routine automatically when the run ends in specman?

Is there any way to specify that a function should be called when a test ends in Specman? I'm looking for something similar to C's atexit().
Nathan Fellman
  • 122,701
  • 101
  • 260
  • 319
0
votes
1 answer

specman on Komodo

I have 2 problems i can't seem to fix: 1) For some reason Komodo won't highlight any methods in my .e files, even though the default language is specman-E, and the file set to the proper language. How can i get him to highlight it? 2) After i press…
0
votes
1 answer

how can I create a reference to a variable in specman?

I have the following code in specman: var x := some.very.long.path.to.a.variable.in.another.struct; while (x == some_value) { //do something that uses x; //wait for something //get a new value for x x =…
Nathan Fellman
  • 122,701
  • 101
  • 260
  • 319
-1
votes
1 answer

create a VPD like file in specman

I want to dump during a specman simulation data about my test environment (like structs and vars). I know such option exists in vcs runs (the creation of a VPD file), but I can't find a similar option in specman. could you please assist?
-2
votes
1 answer

How to automate specman files changes with python?

I am working on a specman environment (hardware verification language), and I want to automate my tasks. In order to do so, I learned Python programming with the target to use the file manipulation abilities. The problem is that I know only how to…
Tom
  • 11
  • 1
-6
votes
3 answers

Pre-compile textual replacement macro with arguments

I am trying to create some kind of a dut_error wrapper. Something that will take some arguments and construct them in a specific way to a dut_error. I can't use a method to replace the calls to dut_error because to my understanding after check that…
Tomerikoo
  • 18,379
  • 16
  • 47
  • 61
1 2 3
17
18