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