aboutsummaryrefslogtreecommitdiff
path: root/c64/prg_file.h
blob: 0cdf1de8a6856bc904ac4739c96ebfb220ed082a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// prg_file.h
//
// 20060803 Markku Alén

#ifndef __PRG_FILE_H__
#define __PRG_FILE_H__ 1

extern int prg_addr;
extern unsigned char prg_data[65536];
extern int prg_len;

int prg_load(const char *filename);

#endif