98c98
< help="Cycle to create a breakpoint")
---
> help="Tick to create a breakpoint")
100c100
< help="Print help on trace flags")
---
> help="Print help on debug flags")
102c102,108
< help="Sets the flags for tracing (-FLAG disables a flag)")
---
> help="Sets the flags for debug output (-FLAG disables a flag)")
> option("--debug-start", metavar="TIME", type='int',
> help="Start debug output at TIME (must be in ticks)")
> option("--debug-file", metavar="FILE", default="cout",
> help="Sets the output file for debug [Default: %default]")
> option("--debug-ignore", metavar="EXPR", action='append', split=':',
> help="Ignore EXPR sim objects")
106,114d111
< # Tracing options
< group("Trace Options")
< option("--trace-start", metavar="TIME", type='int',
< help="Start tracing at TIME (must be in ticks)")
< option("--trace-file", metavar="FILE", default="cout",
< help="Sets the output file for tracing [Default: %default]")
< option("--trace-ignore", metavar="EXPR", action='append', split=':',
< help="Ignore EXPR sim objects")
<
319c316
< debug.schedBreakCycle(int(when))
---
> debug.schedBreak(int(when))
341c338
< if options.trace_start:
---
> if options.debug_start:
343,344c340,341
< e = event.create(trace.enable, event.Event.Trace_Enable_Pri)
< event.mainq.schedule(e, options.trace_start)
---
> e = event.create(trace.enable, event.Event.Debug_Enable_Pri)
> event.mainq.schedule(e, options.debug_start)
348c345
< trace.output(options.trace_file)
---
> trace.output(options.debug_file)
350c347
< for ignore in options.trace_ignore:
---
> for ignore in options.debug_ignore: