SPC music playback tools for real snes apu

Dependencies:   mbed

Revision:
2:62e6e22f8be2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cmd.h	Wed Jan 11 16:00:29 2017 +0000
@@ -0,0 +1,30 @@
+#ifndef __cmd_h__
+#define __cmd_h__
+
+
+#define VERSION_STR "1.03-"
+#define BOLD()      printf("%c[36m", 27);
+#define NORMAL()    printf("%c[0m", 27);
+
+void cmd(char *spc_filename);
+void cmd_pspin_update(void);
+
+typedef struct
+{
+    char title[33];
+    char game_title[33];
+    char name_of_dumper[17];
+    char comments[33];
+
+    //char date[12];
+    char seconds_til_fadeout[4];
+    //char length_of_fadeout[6];
+    //char artist[33];
+    //char chn_dis;
+    //char emulator_used; // 0 unknown, 1 zsnes, 2 snes9x
+
+} id666_tag;
+
+
+#endif
+