SPC music playback tools for real snes apu

Dependencies:   mbed

cmd.h

Committer:
akkera102
Date:
2017-01-11
Revision:
2:62e6e22f8be2

File content as of revision 2:62e6e22f8be2:

#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