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