aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.h
diff options
context:
space:
mode:
authorFilippos Karapetis2010-10-20 17:31:29 +0000
committerFilippos Karapetis2010-10-20 17:31:29 +0000
commit3d85d6804bb13a8cd2822b771aa2e6d4c8276a1d (patch)
tree5cdb3d4a52cd6cc932e13b84e22958d03df48ece /engines/sci/console.h
parent64c0d2a1d1f2b2688e86092834f2e559c437cd29 (diff)
downloadscummvm-rg350-3d85d6804bb13a8cd2822b771aa2e6d4c8276a1d.tar.gz
scummvm-rg350-3d85d6804bb13a8cd2822b771aa2e6d4c8276a1d.tar.bz2
scummvm-rg350-3d85d6804bb13a8cd2822b771aa2e6d4c8276a1d.zip
SCI: Added a new debug command, "find_callk"
This command can be used to find the object methods (including their corresponding objects and owner scripts) that call a specific kernel call. This shall aid us track all the spots where a particular kernel function is called from, therefore it'll be a bit easier to find examples where unimplemented kernel functions are called svn-id: r53646
Diffstat (limited to 'engines/sci/console.h')
-rw-r--r--engines/sci/console.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/console.h b/engines/sci/console.h
index 8bc2da439c..6dd2cf6b36 100644
--- a/engines/sci/console.h
+++ b/engines/sci/console.h
@@ -128,6 +128,7 @@ private:
bool cmdStepCallk(int argc, const char **argv);
bool cmdDisassemble(int argc, const char **argv);
bool cmdDisassembleAddress(int argc, const char **argv);
+ bool cmdFindKernelFunctionCall(int argc, const char **argv);
bool cmdSend(int argc, const char **argv);
bool cmdGo(int argc, const char **argv);
bool cmdLogKernel(int argc, const char **argv);