Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
27
Src/Wasabi/api/script/debugger/jitdbreak.cpp
Normal file
27
Src/Wasabi/api/script/debugger/jitdbreak.cpp
Normal file
|
@ -0,0 +1,27 @@
|
|||
#include "precomp.h"
|
||||
#include "jitdbreak.h"
|
||||
|
||||
JITDBreakpoint::JITDBreakpoint(MakiJITD *_jitd, int _pointer) {
|
||||
jitd = _jitd;
|
||||
pointer = _pointer;
|
||||
enabled = 1;
|
||||
}
|
||||
|
||||
JITDBreakpoint::~JITDBreakpoint() {
|
||||
}
|
||||
|
||||
int JITDBreakpoint::getPointer() {
|
||||
return pointer;
|
||||
}
|
||||
|
||||
void JITDBreakpoint::setEnabled(int e) {
|
||||
enabled = e;
|
||||
}
|
||||
|
||||
int JITDBreakpoint::isEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
|
||||
void JITDBreakpoint::setPointer(int _pointer) {
|
||||
pointer = _pointer;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue