diff options
Diffstat (limited to 'devtools/tasmrecover/tasm-recover')
-rwxr-xr-x | devtools/tasmrecover/tasm-recover | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/devtools/tasmrecover/tasm-recover b/devtools/tasmrecover/tasm-recover index 0c014621f0..f0c3c609f4 100755 --- a/devtools/tasmrecover/tasm-recover +++ b/devtools/tasmrecover/tasm-recover @@ -52,7 +52,8 @@ p = parser(skip_binary_data = [ # newplace.asm 'destlist', # object.asm - 'invlist1', 'invlist1continued', + 'invlist1', + 'invlist1continued', 'examlist', 'withlist1', # saveload.asm @@ -71,6 +72,7 @@ p = parser(skip_binary_data = [ 'gameinfo', 'endgametext1', 'savefiles', + 'decidelist', # sblaster.asm 'dmaaddresses', # sprite.asm @@ -81,6 +83,8 @@ p = parser(skip_binary_data = [ 'r0','r1','r2','r6','r8','r9','r10','r11','r12','r13','r14', 'r20','r22','r23','r25','r26','r27','r28','r29', 'r45','r46','r47','r52','r53','r55', + #talk.asm + 'talklist', # titles.asm 'introtextname', 'title0graphics', @@ -301,12 +305,12 @@ generator = cpp(context, "DreamGen", blacklist = [ 'facerightway', 'fadecalculation', 'fadedos', + 'fadefromwhite', 'fadescreenup', 'fadescreenups', 'fadescreenuphalf', 'fadescreendown', 'fadescreendowns', - 'fadefromwhite', 'fadetowhite', 'fadeupmonfirst', 'fadeupyellows', @@ -663,6 +667,7 @@ generator = cpp(context, "DreamGen", blacklist = [ 'storeit', 'switchryanoff', 'switchryanon', + 'talk', 'tattooman', 'textforend', 'textformonk', |