1
0
Fork 0
forked from len0rd/rockbox

ZXBox: Clean up display init. Saves ~1KB on colour targets, and 4KB (coldfire)... >6KB (SH1) for greyscale targets, due to no longer using floating point math. * Name the 2bpp display routines correctly.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20621 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2009-04-05 12:13:58 +00:00
parent a61e63cb41
commit bf6e0cd9d1
4 changed files with 58 additions and 81 deletions

View file

@ -27,6 +27,11 @@ z80_step.c
z80optab.c
zxbox.c
zxbox_keyb.c
#ifdef HAVE_LCD_COLOR
zxvid_16bpp.c
zxvid_4bpp.c
#else
#if LCD_DEPTH == 2
zxvid_2bpp.c
#endif
zxvid_grey.c
#endif