summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/z80bin.h
blob: b47aa9fa76cf05053134f9deea5d03bee1495805 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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__

image_init_result z80bin_load_file(device_image_interface *image, address_space &space, const char *file_type, uint16_t *exec_addr, uint16_t *start_addr, uint16_t *end_addr );

#endif