openMSX
DebugCondition.cc
Go to the documentation of this file.
1 #include "DebugCondition.hh"
2 
3 namespace openmsx {
4 
5 unsigned DebugCondition::lastId = 0;
6 
7 DebugCondition::DebugCondition(TclObject command_, TclObject condition_, bool once_)
8  : BreakPointBase(command_, condition_, once_)
9  , id(++lastId)
10 {
11 }
12 
13 } // namespace openmsx
DebugCondition(TclObject command, TclObject condition, bool once)
Base class for CPU break and watch points.
Thanks to enen for testing this on a real cartridge:
Definition: Autofire.cc:5