Aspect-based implementation of fast breakpoints added (optional).
git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1685 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
@ -201,8 +201,10 @@ public:
|
||||
/**
|
||||
* Creates a new \c InterruptEvent.
|
||||
* @param nmi the new NMI (non maskable interrupt) flag state
|
||||
* @param triggerNum system and type specific number identifying the requestet
|
||||
* "trouble-type"
|
||||
*/
|
||||
InterruptEvent(bool nmi) : m_IsNMI(nmi) { }
|
||||
InterruptEvent(bool nmi, int triggerNum) : TroubleEvent(triggerNum), m_IsNMI(nmi) { }
|
||||
/**
|
||||
* Returns \c true if the interrupt is non maskable, \c false otherwise.
|
||||
* @return \c true if NMI flag is set, \c false otherwise
|
||||
|
||||
Reference in New Issue
Block a user