diff options
| author | Javier Degirolmo | 2011-10-07 12:17:54 -0300 |
|---|---|---|
| committer | Javier Degirolmo | 2011-10-07 12:17:54 -0300 |
| commit | 178968cc2fc4c32fb918ebb4ccd24d78b64cd73f (patch) | |
| tree | d8cb1d39bd1991258ffe45b4bcc498b0443e4b35 /src-68k/core/songlist.68k | |
Initial upload, Echo 0.8 UNSTABLE VERSION
Diffstat (limited to 'src-68k/core/songlist.68k')
| -rw-r--r-- | src-68k/core/songlist.68k | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src-68k/core/songlist.68k b/src-68k/core/songlist.68k new file mode 100644 index 0000000..69562af --- /dev/null +++ b/src-68k/core/songlist.68k @@ -0,0 +1,28 @@ +;**************************************************************************** +; SongList +; List of songs that appear on the menu +;**************************************************************************** + +SongList: + dc.l BGM_Minion, @Str_Minion_1, @Str_Minion_2, @Str_Minion_3 + dc.l BGM_HoL, @Str_HoL_1, @Str_Null, @Str_Null + + ; 012345678901234567890123456 + +@Str_Null: dc.b 0 +@Str_Untitled: dc.b "[untitled]", 0 + +@Str_Minion_1: dc.b "Evil's Minion", 0 +@Str_Minion_2: dc.b "My distortion guitar is", 0 +@Str_Minion_3: dc.b "better than Tiido's B)", 0 + +@Str_HoL_1: dc.b "Hall of Loneliness", 0 + + even + +;**************************************************************************** +; NumSongs +; Number of songs in song list +;**************************************************************************** + +NumSongs equ 2 |
