summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/debug.h b/debug.h
new file mode 100644
index 0000000..c46f220
--- /dev/null
+++ b/debug.h
@@ -0,0 +1,16 @@
+// debug.h
+// Various functions useful for use during development.
+
+void dPageDump(){
+ for(int i = 0; i < 256; i+=16){
+ printf("\t");
+ for(int j = 0; j < 16; j+=1){
+ printf("%2x ", Memory[(i+j)]);
+ }
+ printf("\n");
+ }
+}
+
+void dStatusDump(){
+ printf("acc:\t%x\nX:\t%x\nY:\t%x\nstack:\t%x\nflags:\t%x\n", acc, X, Y, S, P);
+} \ No newline at end of file