repo.or.cz
/
rofl0r-gnuboy.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix crash when specifying --source on command line
[rofl0r-gnuboy.git]
/
emu.h
blob
6e9fb45cae16ac29a234057f5ae70cf51000ed23
1
#ifndef EMU_H
2
#define EMU_H
3
4
void
emu_run
();
5
void
emu_reset
();
6
void
emu_pause
(
int
paused
);
7
int
emu_paused
(
void
);
8
9
#endif
10
11