summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
authoralekseiplusplus <alekseijeaves@protonmail.com>2023-04-07 02:35:46 +1000
committeralekseiplusplus <alekseijeaves@protonmail.com>2023-04-07 02:35:46 +1000
commitfbca225d25db812fe7823a8528dff17320cf1c53 (patch)
treef99d672c7245233814cd038fd683ef8bf4270961 /debug.h
parent4b2952578ece47358960e29825443f77070a7457 (diff)
commit so I can access it tomorrow.
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