blob: 1040f48bf1480cef509a1e1581725eacd32eb8cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/***********************************************
CBM Quickloads
***********************************************/
#ifndef __CBM_SNQK_H__
#define __CBM_SNQK_H__
#include "imagedev/snapquik.h"
#define CBM_QUICKLOAD_DELAY_SECONDS 3
int general_cbm_loadsnap( device_image_interface &image, const char *file_type, int snapshot_size,
offs_t offset, void (*cbm_sethiaddress)(running_machine &machine, UINT16 hiaddress) );
void cbm_quick_sethiaddress( running_machine &machine, UINT16 hiaddress );
#endif /* __CBM_SNQK_H__ */
|