summaryrefslogtreecommitdiff
path: root/include/disas_z180.h
diff options
context:
space:
mode:
authorLeo C.2024-07-10 20:02:26 +0200
committerLeo C.2024-07-10 20:02:26 +0200
commit18d57acbf4ccd7220e59fe1f2ac1556837c5da83 (patch)
treedde83807d4a6df5df25b3da3dfc462235f7befc7 /include/disas_z180.h
parent976db69ffa80c4d499e53f6f22c26d784fdac0a1 (diff)
downloadz180-stamp-18d57acbf4ccd7220e59fe1f2ac1556837c5da83.zip
new command: dissassemle - Disassemble Z180 code from memory
Diffstat (limited to 'include/disas_z180.h')
-rw-r--r--include/disas_z180.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/disas_z180.h b/include/disas_z180.h
new file mode 100644
index 0000000..a4a0b58
--- /dev/null
+++ b/include/disas_z180.h
@@ -0,0 +1,13 @@
+/*
+ * (C) Copyright 2024 Leo C. <erbl259-lmu@yahoo.de>
+ *
+ * SPDX-License-Identifier: GPL-2.0
+ */
+#ifndef DISDAS_Z180_H
+#define DISDAS_Z180_H
+
+#include <stdint.h>
+
+uint32_t dis_decode(uint32_t addr);
+
+#endif