aboutsummaryrefslogtreecommitdiff
path: root/src-68k/core/songlist.68k
diff options
context:
space:
mode:
Diffstat (limited to 'src-68k/core/songlist.68k')
-rw-r--r--src-68k/core/songlist.68k28
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