summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/z80bin.h
blob: 45ea23096820ea5b57dbc58a49082f8897cfd8e1 (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__

int z80bin_load_file(device_image_interface *image, const char *file_type, UINT16 *exec_addr, UINT16 *start_addr, UINT16 *end_addr );

#endif