summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-09-26 17:19:07 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-09 11:39:25 -0400
commit4231c2c83f2b5331e3e38b10a308ee3752315f9c (patch)
tree1e14867e9c9f0d7b778e7c4c18103a7cbd491794 /firmware
parent278522f8118bd2cfce065ec95f0a93ca53e3ca44 (diff)
downloadrockbox-4231c2c83f2b5331e3e38b10a308ee3752315f9c.tar.gz
rockbox-4231c2c83f2b5331e3e38b10a308ee3752315f9c.zip
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
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/config/agptekrocker.h2
-rw-r--r--firmware/export/config/android.h4
-rw-r--r--firmware/export/config/gigabeats.h2
-rw-r--r--firmware/export/config/ibassodx50.h4
-rw-r--r--firmware/export/config/ibassodx90.h4
-rw-r--r--firmware/export/config/nokian8xx.h2
-rw-r--r--firmware/export/config/nokian900.h3
-rw-r--r--firmware/export/config/sdlapp.h1
-rw-r--r--firmware/export/config/xduoox20.h2
-rw-r--r--firmware/export/config/xduoox3ii.h2
10 files changed, 14 insertions, 12 deletions
diff --git a/firmware/export/config/agptekrocker.h b/firmware/export/config/agptekrocker.h
index c688513137..749786dff1 100644
--- a/firmware/export/config/agptekrocker.h
+++ b/firmware/export/config/agptekrocker.h
@@ -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
diff --git a/firmware/export/config/android.h b/firmware/export/config/android.h
index 8f91d21845..7d3355ef9d 100644
--- a/firmware/export/config/android.h
+++ b/firmware/export/config/android.h
@@ -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
diff --git a/firmware/export/config/gigabeats.h b/firmware/export/config/gigabeats.h
index ba71c5a400..8d82b44065 100644
--- a/firmware/export/config/gigabeats.h
+++ b/firmware/export/config/gigabeats.h
@@ -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
diff --git a/firmware/export/config/ibassodx50.h b/firmware/export/config/ibassodx50.h
index 05e8aa9213..4107fd496f 100644
--- a/firmware/export/config/ibassodx50.h
+++ b/firmware/export/config/ibassodx50.h
@@ -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
diff --git a/firmware/export/config/ibassodx90.h b/firmware/export/config/ibassodx90.h
index 1e2a1be062..ae5a446aa3 100644
--- a/firmware/export/config/ibassodx90.h
+++ b/firmware/export/config/ibassodx90.h
@@ -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
diff --git a/firmware/export/config/nokian8xx.h b/firmware/export/config/nokian8xx.h
index c1585251e8..550ee112d1 100644
--- a/firmware/export/config/nokian8xx.h
+++ b/firmware/export/config/nokian8xx.h
@@ -12,7 +12,7 @@
#define USB_NONE
-
+#define HAVE_FPU
/* define this if you have a colour LCD */
diff --git a/firmware/export/config/nokian900.h b/firmware/export/config/nokian900.h
index 1050763623..ebbe5e2cc8 100644
--- a/firmware/export/config/nokian900.h
+++ b/firmware/export/config/nokian900.h
@@ -12,8 +12,7 @@
#define USB_NONE
-
-
+#define HAVE_FPU
/* define this if you have a colour LCD */
#define HAVE_LCD_COLOR
diff --git a/firmware/export/config/sdlapp.h b/firmware/export/config/sdlapp.h
index 038e1d8c8e..d8c1266f51 100644
--- a/firmware/export/config/sdlapp.h
+++ b/firmware/export/config/sdlapp.h
@@ -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
diff --git a/firmware/export/config/xduoox20.h b/firmware/export/config/xduoox20.h
index 62b2d58582..1852027cf0 100644
--- a/firmware/export/config/xduoox20.h
+++ b/firmware/export/config/xduoox20.h
@@ -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
diff --git a/firmware/export/config/xduoox3ii.h b/firmware/export/config/xduoox3ii.h
index 893fcc5e51..dab7c0f257 100644
--- a/firmware/export/config/xduoox3ii.h
+++ b/firmware/export/config/xduoox3ii.h
@@ -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