blob: 1690ebffcdaf64c06a3addc6588e16f27fa059d7 (
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, address_space &space, const char *file_type, UINT16 *exec_addr, UINT16 *start_addr, UINT16 *end_addr );
#endif
|