summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/shared/z80bin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/shared/z80bin.h')
-rw-r--r--src/mame/shared/z80bin.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mame/shared/z80bin.h b/src/mame/shared/z80bin.h
new file mode 100644
index 00000000000..ecadaae549d
--- /dev/null
+++ b/src/mame/shared/z80bin.h
@@ -0,0 +1,18 @@
+// license:BSD-3-Clause
+// copyright-holders:Robbbert
+/*********************************************************************
+
+ machine/z80bin.h
+
+ Quickload code for Z80 bin format
+
+*********************************************************************/
+
+#ifndef MAME_MACHINE_Z80BIN_H
+#define MAME_MACHINE_Z80BIN_H
+
+#pragma once
+
+image_init_result z80bin_load_file(device_image_interface &image, address_space &space, uint16_t &exec_addr, uint16_t &start_addr, uint16_t &end_addr);
+
+#endif // MAME_MACHINE_Z80BIN_H