ef57475f14
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26489 a1c6a512-1295-4272-9138-f99709370657
91 lines
2.1 KiB
Text
91 lines
2.1 KiB
Text
/* For all targets */
|
|
shortcuts
|
|
|
|
/* For various targets... */
|
|
|
|
#if CONFIG_RTC
|
|
clock
|
|
#endif
|
|
|
|
|
|
/* For all targets with a bitmap display */
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
#if (CONFIG_KEYPAD != ONDIO_PAD) /* not enough buttons */ \
|
|
&& (CONFIG_KEYPAD != SANSA_M200_PAD) /* not enough buttons */ \
|
|
&& (LCD_PIXELFORMAT != HORIZONTAL_PACKING) /* TODO */ \
|
|
&& (LCD_PIXELFORMAT != VERTICAL_INTERLEAVED) /* TODO */ \
|
|
&& (defined(HAVE_LCD_COLOR) || (LCD_HEIGHT == 64) && (LCD_DEPTH == 1) || \
|
|
(LCD_HEIGHT == 128) && (LCD_DEPTH == 2)) \
|
|
&& (PLUGIN_BUFFER_SIZE >= 0x60000 /* it needs a lot of RAM */ || \
|
|
PLUGIN_BUFFER_SIZE <= 0x10000) /* but we can use overlays */
|
|
rockboy
|
|
#endif
|
|
|
|
#ifdef HAVE_TAGCACHE
|
|
pictureflow
|
|
#endif
|
|
|
|
#if CONFIG_CODEC == SWCODEC && PLUGIN_BUFFER_SIZE > 0x20000
|
|
fft
|
|
#endif
|
|
|
|
#if PLUGIN_BUFFER_SIZE > 0x20000 || PLUGIN_BUFFER_SIZE <= 0x10000 /* overlay */
|
|
chessbox
|
|
#endif
|
|
|
|
fractals
|
|
imageviewer
|
|
sudoku
|
|
reversi
|
|
goban
|
|
|
|
/* setjmp/longjmp are not implemented on sh */
|
|
#if (CONFIG_CPU != SH7034)
|
|
frotz
|
|
#endif
|
|
|
|
#ifndef OLYMPUS_MROBE_500
|
|
#if PLUGIN_BUFFER_SIZE > 0x40000 || PLUGIN_BUFFER_SIZE <= 0x10000 /* overlay */
|
|
zxbox
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
/* For all big enough colour screens, iriver H1x0 and iAudio M5 */
|
|
#if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 96\
|
|
|| defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
|
|
pacbox
|
|
#endif
|
|
|
|
#if (defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \
|
|
(LCD_DEPTH == 2) && !defined(ARCHOS_AV300)) && (MEMORYSIZE > 2) && \
|
|
!defined(RB_PROFILE)
|
|
doom
|
|
#endif
|
|
|
|
/* For all the swcodec targets */
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
#if MEMORYSIZE > 2 /* we need a lot of RAM for instruments */
|
|
midi
|
|
#endif
|
|
|
|
/* beatbox */
|
|
#if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES) \
|
|
|| CONFIG_KEYPAD == SANSA_FUZE_PAD
|
|
/* PDBox is confirmed to run on these player models. */
|
|
pdbox
|
|
#endif
|
|
|
|
#if !defined(RB_PROFILE) && MEMORYSIZE > 2 /* mpegplayer allocates at least 2MB of RAM */
|
|
mpegplayer
|
|
#endif
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
|
|
|
/* Lua needs at least 160 KB to work in */
|
|
#if PLUGIN_BUFFER_SIZE >= 0x80000
|
|
lua
|
|
#endif
|