Ultimate Amiga

Games Corner => The Crypt of Bloodwych => Bloodwych Editors and Modifications => Topic started by: bruceuncle on May 22, 2014, 05:03:45 AM

Title: Amiga Resource Tips
Post by: bruceuncle on May 22, 2014, 05:03:45 AM
Quote from: Hungry Horace
The main problem here, is not knowing exactly what each champion data item is used for, or what the other subroutines being called do.
Quote from: Hungry Horace
This seems to load the monsters from the .monsters setup section (the files we know and love from the editing process) and loads them into an allocated space in memory ($16B7C in memory) - this address also has a "count" at the start of it....    lbW0167DA seems to be the reference to that space.
I think it would pay you guys to invest some time in learning enough about Resource to do the things you're itching to get going with.  The disassembly was done with Resource V6.06.  So first question is, have you got a copy?  If not, let me know.

First and foremost, Resource is not infallible.  And it's very easy to stuff up what you're trying to do with a single keystroke (it's far easier to use when you know a few keyboard shortcuts).  With no Undo facility!  I usually save multiple copies of the *.RS files with _nnn tacked on the end.  That disassembly was pass 11 through the results looking for obvious code-versus-data stuff ups and formatting data.  Hence it had a name of Bloodwych_011.RS.  Teaching grandma to suck eggs, I know!  But it's essential to stick with good backup and regression habits with Resource or you can waste an awful lot of time.

Ok.  The basics are:

I'll finish the list there as that lot should get you what you need in that file I posted.  Just remember to Save often with incremental names so you can backtrack if you mess anything up.

This may well be an inappropriate place to post this lot, so feel free to move it Hungry Horace.  And have fun with it.  I'll be happy to take any Resource queries by PM if you need any more help or anything clarifying.
Title: Re: Amiga Resource Tips
Post by: Hungry Horace on December 22, 2015, 07:22:23 PM

  • So you've found a position in the code that you want to label.  Resource may already have put on there in the lbXnnnnnn format.  Just press [numeric keyboard 9] to get a requester where you can type in your own.  Must start with an alpha or underscore, can contain alphanumerics, dot and undersore.  As soon as you define it, all references to it will change to the new name.  Piece of cake!
  • If you want to change a symbol, use [v].  Note that on lines where there is potential for more than one symbol in the operands, use [1], [2], etc. first to tell Resource which one to change.  As you discover more about the data structures used in Bloodwych, you may want to have some sets of symbols already defined, so you can tidy up references like ($000A,a4).  Look at Help for SYM/Custom Bases for a couple of sets you can define that also get saved with the *.RS file.  If you start finding many of them, let me know and I'll assemble up the Resource Symbol files for them.  But we'll go into that when you get there...

right... here's a question.... the resource of Bloodwych has accidently assumed a reference to be to a label. It's not though, it's a longword fixed value. How do i change it back?

the code is showing as:

Code: [Select]
MOVE.L    #AUTOLABEL,D7
but should read:

Code: [Select]
MOVE.L     #00030009,D7
... i can't for the life of me work out how to fix this though!
Title: Re: Amiga Resource Tips
Post by: bruceuncle on December 24, 2015, 04:02:18 AM
I like to make the change visible (and prevent Resource changing anything while I'm not looking) so I comment out the original line and add a new one.
To do that, get the cursor on the offending line and:
1. Add a label to it that consists of a single semi-colon.  Resource now regards the line as a comment.  You can use this trick on as many lines as you like.  Resource was designed that way.
2. Add a full line comment BUT begin it with a single semi-colon.  This is where you type the rest of the line as a replacement.  I'm not at my PC so I can't recall the details but I think you can use \t for the tabs.  Again, Resource does this by design to allow code lines to be added.

You can also use anything as a symbol in Resource, which is another way to do it.  But the change is hidden using that method.  Anything is 'legal' for a symbol.  Eg. I often substitute "-1" for "$FFFF" using that method if it makes better sense in context.
Hope this helps.

Sent from my Lumia 800 using Tapatalk
Title: Re: Amiga Resource Tips
Post by: Hungry Horace on December 28, 2015, 10:51:14 PM
Thanks BruceUncle, as always!

I managed to make the first method work fine... but i couldnt simply 'change' the symbol (the 'hidden' method)

I dont mind not having the change marked, because basically it's an error in the disassembly. I managed to delete the target label, but it instead changed the value to START+$X  ... i'd like to have the intended longword value there instead!
Title: Re: Amiga Resource Tips
Post by: copse on December 29, 2015, 08:23:43 PM
I think I used to do something like change the code to data, look at the raw value (if possible given the instruction) and then change it back to code, and edit the operand value to be that value.  Or knowing START, just calculate the value and set it manually.

I don't recall it being that big a deal working around this.  Maybe there was an easier way.
Title: Re: Amiga Resource Tips
Post by: Hungry Horace on December 29, 2015, 09:04:59 PM
Sounds right,  just can't work out what the control is to "edit the operand value"... I've trawled through some help docs etc but to no avail so far!

I did exactly what you said though and got the data came by switching "back" to data temporarily
Title: Re: Amiga Resource Tips
Post by: bruceuncle on December 29, 2015, 11:55:49 PM
right... here's a question.... the resource of Bloodwych has accidently assumed a reference to be to a label. It's not though, it's a longword fixed value. How do i change it back?

the code is showing as:

Code: [Select]
MOVE.L    #AUTOLABEL,D7
but should read:

Code: [Select]
MOVE.L     #00030009,D7
... i can't for the life of me work out how to fix this though!
Okay, I just refreshed my memory of how to do it.  For the example you gave, simply press [v] to create a symbol and type in the value you want for the literal.  So you would enter $00030009 (note, no # needed but remember the $  ;) ).  It should now display as:

Code: [Select]
MOVE.L     #$00030009,D7
Note that you can do this for any literal operand.  The action always defaults to the first operand.  If you need to change the second operand, press [2] first then [v] (and [3] for the third operand, [4] for the fourth operand if it's a 68020 instruction with a complex effective address).

If Resource objects to changing a symbol, just use Label/Remove Single/Symbol from the menu first (can't recall the keyboard shortcut).  Have you got the PDF of the help file I put together?  It's cheap and cheerful but worth wading through as the Resource Help system has some major bugs and there's a few essential bits that you can't get to.  The PDF has the General Information topics first then the commands in (roughly) the order they appear in the menu.
Title: Re: Amiga Resource Tips
Post by: copse on January 16, 2016, 07:24:40 PM
I don't seem to be able to get the edit symbol dialog box (6.06) to take copy and paste.  I can copy and paste in the newshell window in workbench, but if I right-amiga+c or right-amiga+v in the resource edit dialog box, it just puts c or v.

This would be a huge speed up, as a lot of what I am doing is searching for -$222(a6) and then editing the symbol to be something like DosDelay-JTD1_02A890.

Any ideas?
Title: Re: Amiga Resource Tips
Post by: bruceuncle on January 16, 2016, 09:32:29 PM
I don't seem to be able to get the edit symbol dialog box (6.06) to take copy and paste.  I can copy and paste in the newshell window in workbench, but if I right-amiga+c or right-amiga+v in the resource edit dialog box, it just puts c or v.

This would be a huge speed up, as a lot of what I am doing is searching for -$222(a6) and then editing the symbol to be something like DosDelay-JTD1_02A890.

Any ideas?
Time to learn all about macros and the accumulator.
The simple approach is to define your replacement symbol in the accumulator.  Then use "\e\e" in the requester for the symbol.
The more complex way is to write a looping macro to do it through the whole file (seach, define symbol, loop).  And learn keyboard shortcuts.
.Check out the macros I wrote for the AMOS Pro extensions for some examples to get started with.  It's a steep lsearning curve but the only way to get things done in Resource.
I can't go into any detail here as replying on the smartphone is tedious.  I'll do a more comprehensive post when I get back to my PC.
Title: Re: Amiga Resource Tips
Post by: copse on January 17, 2016, 02:35:29 AM
Here's another one. SOLVED BELOW

Let's say some program refers to it's code/data via an address register.  It might use negative and positive offsets.

So you go to the address in the disassembly view the offset would reference, and you give it a label.  Let's say JTD1_022222.  Then you go to the places that use that offset, and set the symbol to JTD1_022222-JTD1_Base.  Then you can follow the reference to the label.

But let's say, you decide that JTD1_022222 actually shows a dialog on failure to open a library, and you want to name it ShowLibOpenFailDialog.  So you change the label, and the references do not change.

Is there a way to get the dynamic symbols, like JTD1_022222-JTD1_Base, to automatically update with label changes?
Title: Re: Amiga Resource Tips
Post by: copse on January 17, 2016, 09:22:35 PM
Hmm, just occurred to me, maybe I should also learn the intricacies of the Convert to (xx,An) EA menu option.
Title: Re: Amiga Resource Tips
Post by: copse on January 17, 2016, 10:54:46 PM
Alright, here's my partially read the docs interpretation.  The An register conversions are global, and are only really used for C programs, or assembler programs with constant global use of the same address register.

So, that leaves the string expressions.  That is, you can refer to a label at a resource address as \e0$2A890\e in, for instance, the symbol entry text field you get when you press 'v'.  And let's say $2A890 is in A5, and you have an offset you want to handle (e.g. $2000 or -$184).  First you need to go to the address the offset corresponds to, and make a label - it doesn't matter what.  Then you can refer to the address for the offset and have it automatically pick up the label, and therefore any changes to the label.

e.g. $2000(A5) where A5 = $2A890 (with label JTD1_02A890).  So the actual referenced address is, $2C890.  So you 'F10' to remember the current position, then 'CTRL+n' and enter $2C890.  Then you hit 'SHIFT+KPENTER' and enter a label name, e.g. 'SomePtr'.  Then hit 'RIGHT CURSOR' to return to the original location, and hit 'v' and enter as the symbol value '\e0$2C890\e-\e0$2A890\e' and you then see 'SomePtr-JTD1_02A890(A5)' as the operand.

And there it is.  Now I just need to come up with some way to automate it.  I'm going to go back to reading the manual, which despite being generated from in-program data, isn't half bad.
Title: Re: Amiga Resource Tips
Post by: copse on January 18, 2016, 02:53:40 AM
And here is my macro.  Now the question is, how do I undo all the damage I've done by not having this  :)

BUGS: Probably does not work for OFFSET = 0

Add base address to buffer B.

$2A890

Automating the creation of labels for instructions that use $v(An), requires base address in buffer B.

1. Remember current cursor position.
   C/CURSOR/Remember $002C [F10]
      "Push" the current cursor location on ReSource's location stack.
2. Get symbol value from the selected field on the current line to the accumulator.
   S/STRINGS/Get/Symbol value $020E
      Copy the symbol value from the selected field on the current line to the
      accumulator.
3. Add the base offset to the accumulator to get the label address which should be referenced.
   ... adding a negative offset will fail, so we drop out of the conditional to handle that
   ... otherwise, we skip the handling
   MACROS 1/Directives/Start conditional
      ... add the address from buffer B to the accumulator.
      S/STRINGS/Maths functions/Add $022E
         STORE "\eB"
         You will be asked for a number, to be added to the accumulator. If a carry
         results, a macro 'fail' will occur.
      MACROS 1/Next macro label/#1
   MACROS 1/Directives/End conditional
   ... Can't add the negative offset, so negate it, and subtract it from the address.
   ... a) the failed add clobbers the offset with the address
      S/STRINGS/Get/Symbol value $020E
   ... b) negate the offset
      S/STRINGS/Maths functions/Negate
   ... c) store for subtraction in buffer C
      S/STRINGS/Swap with buffer/C
   ... d) put base address in accumulator
      S/STRINGS/Define string/Acm
         STORE "\eB"
   ... d) subtract offset (buffer C) from base address (accumulator)
      S/STRINGS/Maths functions/Subtract
         STORE "\eC"
   MACROS 1/Set macro label/#1
   
4. Go to the desired label address.
   C/CURSOR/Absolute/Specify offset $01AD [ctl]+[n]
      STORE "\e\e"      
      You will be asked to supply an offset representing how far from the start of
      the file, the cursor location should be. The number may be specified in
      hexadecimal, decimal, or binary. If hexadecimal, the string must start with
      "$", if binary, it must start with "%".3. Make a label if one does not currently exist.
5. Store the accumulator value in buffer A.   
   S/STRINGS/Swap with buffer/A
6. Create a "shop" label if one does not exist.
   MACROS 1/Directives/Start conditional
      S/STRINGS/Get/Label $0209
         -- Note that this does nothing.  It should fail and bail out to the replace label, but I dont't think it does.
         If there is a label defined at the cursor location, it will be copied to the
         accumulator.         
      L/LABELS/Create single/Label - fwd ref $0034 [F6]
         The current line of code will be searched for references to positions within
         the current file. If any are found, ReSource will make a decision on which
         type of data is at the position referenced. It will then set the
         data type (unless it has already been set), and create a label at that offset
         (unless a label has already been defined for that location). This new label
         will be immediately used for all references to that location, which of course
         includes the reference within the current line. If there are no references,
         or there is a reference, but it is outside of the range of the current file,
         then this function will do nothing. Normally, this function will only be
         used within macros, as the "PROJECT/Disassemble" normally will create all
         necessary labels.
      MACROS 1/Next macro label/#2
   MACROS 1/Directives/End conditional
7. If there is no label we arrived here.  So create a generic one OR ask the user.
   L/LABELS/Replace single/Label $0184 [F4]
      Create a "shop" label at the cursor position. A "shop" label is one that is
      9 characters long, begins with "lb", has the data type immediately following,
      and ends with the code offset. It may also be of some other length, and end
      with ".MSG".
      The "data type known" attribute will be set also.
8. Allow skipping replacing the label if there already is one.
   MACROS 1/Set macro label/#2
7. Return to last stored location on the stack.
   C/CURSOR/Absolute/Previous location $8x3F [leftarrow]
      "Pop" the cursor location from the top of the cursor location stack. If the
      stack is empty, a macro "fail" will result.
6. Build the symbol to put in the selected field on the current line in the accumulator.
   S/STRINGS/Define string/Acm
      STORE "\e0"
   S/STRINGS/Edit functions/Append $0208
      STORE "\eA"
      You will be asked to supply a string, which will be appended to (added to the
      end of) the accumulator, providing that the resulting string is no longer
      than 240 characters
   S/STRINGS/Edit functions/Append $0208
      STORE "\e-\e0"
   S/STRINGS/Edit functions/Append $0208
      STORE "\eB"
   S/STRINGS/Edit functions/Append $0208
      STORE "\e"
7. Put the accumulator as the symbol for the selected field on the current line.
   L/LABELS/Create single/Symbol $0359
      STORE "\e\e"
      You will be asked to supply a string, which will replace one of the numbers
      on the current line. A symbol may be created for the first, second, third of
      fourth number on the current line.

Title: Re: Amiga Resource Tips
Post by: bruceuncle on January 18, 2016, 12:54:50 PM
Hey Copse, you've got the hang of it and you're writing macros.  Good stuff!
Resource calls it something like "dynamic string indirection".  It's important to understand that Resource will accept any string as a symbol but it doesn't attach any meaning to it other than plonking it into the symbol table.  The embedded escape-delimited offsets are effectively just markups that it knows it has to substitute stuff for.  The resulting symbol is only important to an assembler, not to Resource.
The easy way to do word or longword jump tables is to set the EA base address from the "*" menu (special functions).  Use one of the three available (#1, #2 or #3).  Then, for each offset in the table, select the corresponding"Use" command.  This does the same thing all in one stroke and creates the auto labels at the target addresses.  And don't forget that [spacebar] repeats the last command but ignores any relative cursor movement key strokes.  So when you've done the first entry in the table it's simply repeating [down arrow], [spacebar] to do the rest.
The EA address commands can give the impression that you're limited to just three jump tables.  But this is not the case.  Once the embedded symbol strings have been created, that's all they are, just strings.  The three sets of EA commands can be reset to new base addresses without disturbing anything you've already used them for.
The address register EA conversions are useful too.  They can also be restricted in scope to just apply to a defined part of the code.
If you haven't discovered them already, try switching the Ref Recognition, Auto Labels and Data Comments on and off in the Options 1 dialogue and watch what it does to the display.
I'm running off the bottom of Tapatalk, so to be continued when I'm next on my PC.

Sent from my Lumia 800 using Tapatalk
Title: Re: Amiga Resource Tips
Post by: bruceuncle on January 18, 2016, 01:11:20 PM
And why does Tapatalk not log me  out properly?  So I have to go to the web site and log out there ( or more accurately here  ;) ).  Grrr!
Title: Re: Amiga Resource Tips
Post by: copse on January 18, 2016, 05:26:05 PM
Thanks bruceuncle.

It'd be so much easier if it were possible to enter macros by the function names, doing the hand menu selection with error conditions is clumsy at best.

I need to figure out how to get WinUAE/Workbench31 to be a higher resolution.  As it is, I'm just using the highest native resolution and can only fit so many lines in resource on the screen.
Title: Re: Amiga Resource Tips
Post by: copse on January 19, 2016, 12:15:24 AM
Hmm.  Someone over at EAB pointed out that my macro can be replaced by I think it was:

go to base address in file
press shift+ctrl+alt+1
go to a line and hit ctrl+1

And that's it!
Title: Re: Amiga Resource Tips
Post by: bruceuncle on January 19, 2016, 09:06:55 PM
Hmm.  Someone over at EAB pointed out that my macro can be replaced by I think it was:

go to base address in file
press shift+ctrl+alt+1
go to a line and hit ctrl+1

And that's it!
That's why it's a good idea to learn a few keyboard shortcuts  ;D .
The main problem I found with Resource is that there's so much to learn! 
I still haven't managed to get to my PC yet (it's school holidays here and I keep getting diverted with visitors, etc).  I gave up with Tapatalk so I'm typing this through a 'keyhole' again  ;) .
Have you found the stuff I put in the AMOS Pro extensions zip yet?  There's a copy-and-paste file of the macro commands there.  I have it open alongside the macro I'm editing. That's why I use 1280 x 1024 workbench for this stuff.  That file has been corrected, so ignore the one in the macros docs.  The 'repeat' instructions have an "x" embedded in them so you don't forget to put the number of repeats in (the assembler will chuck it out).
Read the docs on ShowMacros and ShowKeys (I think they're the right names).  It's a pity that the only way to get the sources out is to do the whole lot in one file.
There's a gotcha where you want to strip the binary from an assembled macro using Resource itself.  Each macro binary MUST end in a single zero word.  But Amiga load files are in multiples of long words.  So 50% of the time you get two words and the macro won't load properly (you'll get a screen 'beep').  When that happens, it corrupts the macros file.  Which is a pain if you just saved it!  The solution is to set the start and end and use a partial binary save.
The smartphone is getting mighty sluggish so I'll leave it a that for now.
Title: Re: Amiga Resource Tips
Post by: copse on January 21, 2016, 02:30:49 AM
I haven't found your amos attachment.  Most of what you're saying requires me to learn more.

I'm currently going over the data structures in Resource looking for offsets.  Once that's done I'll try and export the asm and assemble and run it.  If it's stable, then that's a start and the tools can be a next step later on.
Title: Re: Amiga Resource Tips
Post by: bruceuncle on February 11, 2016, 12:19:34 AM
I haven't found your amos attachment.  Most of what you're saying requires me to learn more.
Sorry for the delay copse, I had to take some enforced downtime.
I hadn't realised that you didn't have the Resource stuff used for the AMOS Extension libraries.  It's AMOS_Extns.rar (http://www.ultimateamiga.co.uk/index.php?action=dlattach;topic=9794.0;attach=1146) and the post is here (http://www.ultimateamiga.co.uk/index.php/topic,9794.msg46877.html#msg46877).  Manuals and docs are in the resource_install folder.  Other docs have a ".asc" extension and are in the root folder.
I keep updating the file of macro codes I use when writing them, so there's the latest copy attached.
I should be able to post more frequently now, although I won't be fully back in action for a few months yet  :( .  Good luck!

I'm currently going over the data structures in Resource looking for offsets.  Once that's done I'll try and export the asm and assemble and run it.  If it's stable, then that's a start and the tools can be a next step later on.
If you can track down how the help text is printed to screen, then the help files can be fixed.  There appears to be an assumption that any link in the help always has an (assumed) new line at its end.  This seems to be clashing with the embedded new line characters in the text.  The result is the mess you see on screen (try looking at help on macros for an example).  I was hoping that the problem was just a mistake in the help library data.  But the code needs to be tracked down and that's when I stopped any further work.  I'd already got the help text out and produced the Resource_V6_06_Help_Text.pdf manual, so I left it at that for the time being.
Title: Re: Amiga Resource Tips
Post by: Bit on March 15, 2016, 02:24:54 AM
If there's anything important bringing both sources together, it would be a thing like the #define in C for constants (and other things)
i.e.
#ifdef XTENDED
  #define NPCVITALITY  10
  #define USEREGA0A4  A4
  #define MOVEBW        move.w
#else
  #define NPCVITALITY  7
  #define USEREGA0A4  A0
  #define MOVEBW        move.b
#endif

In some parts of the code another temporary register is used, in that case A4 for the extended levels, and A0 for the normal game.
By such defines large pieces of the code can be matched and are well readable and compilable.
Another silly difference is adda.w 10, A0 in normal mode, lea 10(a0),a0 in xtended...
Title: Re: Amiga Resource Tips
Post by: bruceuncle on March 15, 2016, 02:53:06 AM
Resource uses symbol libraries.  Very easy to put together as they're just lists of symbols and their values.  Let me know what they are for the A4 offsets and I can put one together and apply it to the disassembly.  I used them extensively in the AMOS extensions disassemblies.
Good luck for Wednesday 😉
Title: Re: Amiga Resource Tips
Post by: Hungry Horace on March 15, 2016, 08:05:30 PM
Resource uses symbol libraries.  Very easy to put together as they're just lists of symbols and their values.  Let me know what they are for the A4 offsets and I can put one together and apply it to the disassembly.  I used them extensively in the AMOS extensions disassemblies.
Good luck for Wednesday 😉

See thread "Champion Data (BW)" :  http://www.ultimateamiga.co.uk/index.php/topic,9736.msg46373.html#msg46373

... it seems we have cross-over of information being discussed!

There's a few key data-sets i've identied, and i'll try and get the full definitions into the revelant posts in the general Hacking Resource thread.  (You can see a couple of links in that post already)

Certainly the one for "Champion Data" - that defines strength, agility, level etc is commonly used, any time "CharacterStats" is linked to (*usually* in A4)


On a related matter.....

Removing Excess Labels

Did you see my post above about how to define 'offset' address labels? I still don't know how to do this, perhaps via an EQU ?  This would actually remove a number of unwanted labels, and allow us to pack more data blocks up via INCBIN "filename.data" or "filename.graphics" in the final source.


I ask , as this is coming up more and more as i look to put meaningful labels in.


Let me give an example.  There is a label called "PocketContents" - which is a clearly defined datablock for all of the objects held by all 16 champions at any one point. As such it's a 16 * $10 datablock ($100 bytes)

The PocketContents label is therefore referred to in 13 lines of code. Unsurprisingly these are usually something like:    

Code: [Select]
adrJA005170
MOVEQ #0,D0
MOVE.B (adrB_00EE3E).L,D0
ASL.W #4,D0
LEA (PocketContents).L,A0
ADDA.W D0,A0
MOVEQ #0,D0
MOVE.B (A0),D1
CMPI.B #$1B,D1
BCS.B adrCd005192
CMPI.B #$3F,D1
BCS.B adrCd0051A4
adrCd005192
MOVE.B (1,A0),D1
MOVEQ #1,D0
CMPI.B #$1B,D1
BCS.B adrCd0051CE
CMPI.B #$3F,D1
BCC.B adrCd0051CE

This allows the code to skip to the correct Champion's Pockets and start using (A0) and (1,A0) etc to read what is in left hand (A0) and right hand (1,A0)


Now... the currently worn Armour can be checked by looking at (2,A0) .... however, in one instance(!!!) in a routine starting at adrCd00A744, for some reason we jump directly to a label called 'ArmourWorn'

 
Code: [Select]
LEA (ArmourWorn).L,A0
The label itself, is meaningless, because it is effectively (2,PocketContents)... and the routine will also need to add $20 * X to the address, to reach it's 'actual' destination.

Unfortunatley, (2,PocketContents) is not permitted by DevPac, but I guess there must be a way of defining / reaching it, allowing us to change that one instruction. It will also then allow us to take the entire pocket-contents datablock, and replace it with an INCBIN "filename.data".

This technique is used a lot in the graphics sets, which obviously we want to avoid in the final ASM file, in order to include the graphics as individual files!

in my identification spreadsheet for new labels, i am putting yellow highlights on any labels i suspect need removing/replacing for whatever method avoids this.


Any thoughts on how we get to this end-goal??





Title: Re: Amiga Resource Tips
Post by: Hungry Horace on March 16, 2016, 08:09:17 PM

Removing Excess Labels

Did you see my post above about how to define 'offset' address labels? I still don't know how to do this, perhaps via an EQU ?  This would actually remove a number of unwanted labels, and allow us to pack more data blocks up via INCBIN "filename.data" or "filename.graphics" in the final source.


I ask , as this is coming up more and more as i look to put meaningful labels in.

....
This technique is used a lot in the graphics sets, which obviously we want to avoid in the final ASM file, in order to include the graphics as individual files!

in my identification spreadsheet for new labels, i am putting yellow highlights on any labels i suspect need removing/replacing for whatever method avoids this.


Any thoughts on how we get to this end-goal??


I think i might have an answer that works in DevPac now

Here is some original code in Playsound routine:

Code: [Select]
asl.w #$02,d0 ;E540
lea AudioSample_1.l,a0 ;41F900054422
add.w adrW_008938(pc,d0.w),a0 ;D0FB005E
move.w adrW_00893A(pc,d0.w),d0 ;303B005C

d0 is used to determine which sample we want to play. To do this is needs two figures, the offset at which the Sample data starts, and the playback speed. These are stored as consective values in a lookup table which starts at adrW_008938.

Because of the way it takes two items of data at once, the code acts as if there are 2 labels. adrW_008938 and adrW_00893A

However. I believe the code should be swapped out for the following, which removes an entire label from our code:

Code: [Select]
add.w adrW_008938(pc,d0.w),a0 ;D0FB005E
move.w adrW_008938+2(pc,d0.w),d0 ;303B005C

This seems to compile up just fine, so i suspect there are quite a few more of these to come.

I guess i'll need to know how to put these into Resource, if that is the case.

In looking at this routine, i've noticed your new code has put in some extra labels in AudioSample_1-5, but i dont think these are right tbh. I suspect you have taken them as offsets relative to AudioSample_1, but that they actual relate to playback speed. I'm going to go verify this now!