forked from len0rd/rockbox
codecs: Add support for the 'VTX' ZX Spectrum chiptunes format.
This codec requires floating point. Original author: Peter Sovietov Ported to Rockbox: Roman Skylarov Further integration and bugfixes: Solomon Peachy Change-Id: I781ecd3592dfcdbbc694063334350342534f1d6c
This commit is contained in:
parent
278522f811
commit
4231c2c83f
29 changed files with 1642 additions and 41 deletions
|
@ -17,6 +17,8 @@
|
|||
#define CONFIG_PLATFORM (PLATFORM_HOSTED)
|
||||
#endif
|
||||
|
||||
#define HAVE_FPU
|
||||
|
||||
/* define this if you have a colour LCD */
|
||||
#define HAVE_LCD_COLOR
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
/* We don't run on hardware directly */
|
||||
#define CONFIG_PLATFORM (PLATFORM_HOSTED|PLATFORM_ANDROID)
|
||||
#define HAVE_FPU
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 100
|
||||
|
@ -12,9 +13,6 @@
|
|||
|
||||
#define USB_NONE
|
||||
|
||||
|
||||
|
||||
|
||||
/* define this if you have a colour LCD */
|
||||
#define HAVE_LCD_COLOR
|
||||
|
||||
|
|
|
@ -153,6 +153,8 @@
|
|||
|
||||
#define CONFIG_CPU IMX31L
|
||||
|
||||
#define HAVE_FPU
|
||||
|
||||
/* Define this if you want to use imx31l's i2c interface */
|
||||
#define CONFIG_I2C I2C_IMX31L
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
/* We don't run on hardware directly */
|
||||
#define CONFIG_PLATFORM PLATFORM_HOSTED
|
||||
#define HAVE_FPU
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 94
|
||||
|
@ -33,9 +34,6 @@
|
|||
|
||||
#define USB_NONE
|
||||
|
||||
|
||||
|
||||
|
||||
/* define this if you have a colour LCD */
|
||||
#define HAVE_LCD_COLOR
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
/* We don't run on hardware directly */
|
||||
#define CONFIG_PLATFORM PLATFORM_HOSTED
|
||||
#define HAVE_FPU
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 95
|
||||
|
@ -33,9 +34,6 @@
|
|||
|
||||
#define USB_NONE
|
||||
|
||||
|
||||
|
||||
|
||||
/* define this if you have a colour LCD */
|
||||
#define HAVE_LCD_COLOR
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define USB_NONE
|
||||
|
||||
|
||||
#define HAVE_FPU
|
||||
|
||||
|
||||
/* define this if you have a colour LCD */
|
||||
|
|
|
@ -12,8 +12,7 @@
|
|||
|
||||
#define USB_NONE
|
||||
|
||||
|
||||
|
||||
#define HAVE_FPU
|
||||
|
||||
/* define this if you have a colour LCD */
|
||||
#define HAVE_LCD_COLOR
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
/* We don't run on hardware directly */
|
||||
#define CONFIG_PLATFORM (PLATFORM_HOSTED|PLATFORM_SDL)
|
||||
#define HAVE_FPU
|
||||
|
||||
/* For Rolo and boot loader */
|
||||
#define MODEL_NUMBER 100
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#define CONFIG_PLATFORM (PLATFORM_HOSTED)
|
||||
#endif
|
||||
|
||||
#define HAVE_FPU
|
||||
|
||||
/* define this if you have a colour LCD */
|
||||
#define HAVE_LCD_COLOR
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#define CONFIG_PLATFORM (PLATFORM_HOSTED)
|
||||
#endif
|
||||
|
||||
#define HAVE_FPU
|
||||
|
||||
/* define this if you have a colour LCD */
|
||||
#define HAVE_LCD_COLOR
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue