aboutsummaryrefslogtreecommitdiff
path: root/sky/debug.h
diff options
context:
space:
mode:
authorOliver Kiehl2003-04-25 15:17:53 +0000
committerOliver Kiehl2003-04-25 15:17:53 +0000
commitc36bdb3e118670cafdde92659db0719438dc8487 (patch)
treefdc98c37f55c5bf02b39ae05e2506468ea734fab /sky/debug.h
parentda4a76ed04bd197a9527802d4b72556786226f37 (diff)
downloadscummvm-rg350-c36bdb3e118670cafdde92659db0719438dc8487.tar.gz
scummvm-rg350-c36bdb3e118670cafdde92659db0719438dc8487.tar.bz2
scummvm-rg350-c36bdb3e118670cafdde92659db0719438dc8487.zip
Committing my stuff under pressure from Endy ;)
please note that there are still many bugs in here. several stuff isn't endian safe either. SkyLogic needs to get split up as well. svn-id: r7106
Diffstat (limited to 'sky/debug.h')
-rw-r--r--sky/debug.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/sky/debug.h b/sky/debug.h
new file mode 100644
index 0000000000..1e36e7c1b5
--- /dev/null
+++ b/sky/debug.h
@@ -0,0 +1,31 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2003 The ScummVM project
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+
+#include "sky/sky.h"
+
+class SkyDebug {
+public:
+ static void fetchCompact(uint32 a);
+ static void logic(uint32 logic);
+ static void script(uint32 command, uint16 *scriptData);
+ static void mcode(uint32 mcode, uint32 a, uint32 b, uint32 c);
+};
+