2

Is there a way to jump from breakpoint to breakpoint while debugging any design (VHDL or Verilog entry) in ModelSim ?

shrm
  • 1,112
  • 2
  • 8
  • 20
  • [modelsim/getting_started](http://www.tkt.cs.tut.fi/tools/public/tutorials/mentor/modelsim/getting_started/gsms.html#debugging) Section 3.4.3. – Morgan Mar 16 '15 at 15:57
  • Wouldn't the "Run" button work this way? – Eugene Sh. Mar 16 '15 at 16:25
  • @EugeneSh. No, _run_ will make the simulation run through to the end of specified time without considering the breakpoints. – shrm Mar 16 '15 at 16:29

1 Answers1

2

run -all moves the control to the next breakpoint.

shrm
  • 1,112
  • 2
  • 8
  • 20
  • It would be good if you could expand this to include how to set the break points as well, then the Question and answer will stand on its own. thanks. – Morgan Mar 16 '15 at 18:00