diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-03-02 23:49:38 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-03-02 23:49:38 +0000 |
| commit | 384de102469fee4e0792df8fe38586d3206774ed (patch) | |
| tree | ee5342103e17738acfb8421328ea7c57433f55e6 /apps/plugins/rockboy/fb.h | |
| parent | 48dad47df98bdec632e8930b6a97359dc2c428f5 (diff) | |
| download | rockbox-384de102469fee4e0792df8fe38586d3206774ed.zip rockbox-384de102469fee4e0792df8fe38586d3206774ed.tar.gz rockbox-384de102469fee4e0792df8fe38586d3206774ed.tar.bz2 rockbox-384de102469fee4e0792df8fe38586d3206774ed.tar.xz | |
Rockboy - gameboy emulation for rockbox, based on gnuboy. Still a bit early, but already playable on iRiver H1xx and the simulators. The archos recorder version is currently rather slow...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6104 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/rockboy/fb.h')
| -rw-r--r-- | apps/plugins/rockboy/fb.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/apps/plugins/rockboy/fb.h b/apps/plugins/rockboy/fb.h new file mode 100644 index 0000000..97d16ae --- /dev/null +++ b/apps/plugins/rockboy/fb.h @@ -0,0 +1,35 @@ + + +#ifndef __FB_H__ +#define __FB_H__ + + +#include "defs.h" + + + +struct fb +{ + byte *ptr; + int w, h; + int pelsize; + int pitch; + int indexed; + struct + { + int l, r; + } cc[4]; + int yuv; + int enabled; + int dirty; +}; + + +extern struct fb fb; + + +#endif + + + + |