aboutsummaryrefslogtreecommitdiff
path: root/c64/c64.h
blob: 9b9c298f2a18b9a17674ba32390ee05c76ca02a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// c64.h
//
// 20060803 Markku Alén

#ifndef __C64_H__
#define __C64_H__ 1

#include "kbd.h"

#define F_CPU				984375L

extern unsigned int total_cycles;

void c64_init(void);

void c64_run(unsigned int cycle_count);

#endif