blob: a5453145e3195231832fe68736338017d56219b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles, Curt Coder, hap
/***************************************************************************
plaparse.h
Parser for Berkeley standard (aka Espresso) PLA files into raw fusemaps.
***************************************************************************/
#ifndef MAME_UTIL_PLAPARSE_H
#define MAME_UTIL_PLAPARSE_H
#pragma once
#include "jedparse.h"
/***************************************************************************
FUNCTION PROTOTYPES
***************************************************************************/
/* parse a file (read into memory) into a jed_data structure */
int pla_parse(util::random_read &src, jed_data *result);
#endif // MAME_UTIL_PLAPARSE_H
|