blob: 9547f2c14270a60b8cea298275187da064774c4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*********************************************************************
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
|