You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
419 B
C

#ifndef _EMUBASE_H_
#define _EMUBASE_H_
char loadfilename[256];
int frame;
extern void emulation();
extern int load_address;
//---------------------------------------------------------------------------
extern int start_pc;
extern int init_breakpoint;
extern int init_cycles_per_tick;
//---------------------------------------------------------------------------
extern char emulation_run;
#endif