summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/cmd_cpu.h14
-rw-r--r--include/z80-if.h5
2 files changed, 19 insertions, 0 deletions
diff --git a/include/cmd_cpu.h b/include/cmd_cpu.h
new file mode 100644
index 0000000..d590468
--- /dev/null
+++ b/include/cmd_cpu.h
@@ -0,0 +1,14 @@
+/*
+ * (C) Copyright 2018 Leo C. <erbl259-lmu@yahoo.de>
+ *
+ * SPDX-License-Identifier: GPL-2.0
+ */
+
+#ifndef CMD_CPU_H
+#define CMD_CPU_H
+
+#include "command.h"
+
+command_ret_t do_cpuchk(cmd_tbl_t *, uint_fast8_t, int, char * const []);
+
+#endif /* CMD_CPU_H */
diff --git a/include/z80-if.h b/include/z80-if.h
index 0ad14f5..7225cf4 100644
--- a/include/z80-if.h
+++ b/include/z80-if.h
@@ -58,3 +58,8 @@ int z80_memfifo_is_full(const fifo_t f);
int z80_memfifo_getc(const fifo_t f);
uint8_t z80_memfifo_getc_wait(const fifo_t f);
void z80_memfifo_putc(fifo_t f, uint8_t val);
+
+void z80_load_mem(int_fast8_t verbosity, const FLASH unsigned char data[],
+ const FLASH unsigned long *sections,
+ const FLASH unsigned long address[],
+ const FLASH unsigned long length_of_sections[]);