Did someone mention disassembly and a 68k version? I don't know the game in detail (shame on me!) but if you can supply the executables and data files I can Resource them... Got plenty of macros, libraries and practice now after all that Resourcing in CSI AMOS ;)
Didn't I post the amiga binary somewhere?? (I have attached a copy to this post)Thanks - got it!
The binary file contains everything... Game code, data, graphics,sound... But we have mapped out a lot of the data so I would gladly help you with this in order to make the resourcing easier.Anything you've got on the data locations (and format?) of any data files and any data embedded in the binaries would be of enormous help. The most tedious part of Resourcing binaries is sifting through the first few disassembly passes for incorrect data-versus-code assumptions.
My ideal situation is to have the asm source code and actually get it implemented into Amos code so that I could implement using IFF graphics (making new additions easier) but retain the main game core in asm so that the internal logic remains unchanged.Yeah. My own attitude to AMOS programming is to use it (AMOS) to get stuff up and running, then see what might benefit from a bit of asm optimisation. The compiler just incorporates the code in the final compiled program. AMOS still takes care of passing parameters in and out where you define machine-code Procedures. I used parameter passing in that DBL Editor I released a while back if you want to look at an example. So, you should easily be able to incorporate existing machine code from Bloodwych into an AMOS program as long as the source code and data are reasonably structured. In any case, when the source has been extracted, it is, of course, editable and can be reassembled into whatever building blocks you need.
I've never actually compiled any asm in Amos though...Do you mean
I've also attached the WHDLoad slave source code, as it patches the copy protection and disk loading etc. (although obviously uses the WHDload macros for the latter)Looks like I'll need to find out more about WHDLoad :'( I'd been putting that off as I've got my hands full with what I'm having to learn already.
23 FC 84 88 FF C4 00 00 00 24 70 00 4E 75
move.l #$8488ffc4,$24.w
moveq #0,d0
rts
So does this compile ok? I guess it would only run with WHDload as the copy protection needs to be removed, but I will see if I can find more addresses for labeling to make it easier still.
in further developments, I've worked out how to get the reloc header to allow me to have a larger file (turns out its a single block of x no. long words I needed to update)You posted this whilst I was typing. You'll have to adjust the longword sizes in both hunk_header and hunk_reloc. And you'll need to adjust the length of the code that gets copied:
The only thing i'm not sure of is whether this "new" area i'm adding is being moved to the appropriate address by the CodeMover routine (although I did adjust a number in it).... I don't think it is, as I would otherwise expect to see the last bit of "junk" I put in the location duplicated by the move (although that could be because of how i'm checking it atm).
Sure, just point me at them binaries. Realistically, I won't get to them until after Xmas as AMOS Pro comes first. I overdid the sitting a couple of weeks ago and spent a fortnight studying the ceiling for my troubles. No real harm but very painful!
bruceuncle - is there any chance of you repeating your re-sourcing of this, for the Bloodwych, Extended Levels binary?
I would be very grateful, as you did a great job on the original game!
there should be code instead of data at:
00148E,
0050CA,
0050D2,
007A7C, seems to be the adress part of a jump
there's also a same thing in Atari-code
00A166,
00BEBC,
00CE58
and here are in fact datas instead of code:
002E88 (to the label),
00D39C
have to check how it can get to those routines:
0036AE, 00397A, 006C04, 00786A, 007FD4, 00833A,
0083F6, 00CC34,
00D720 (this one really unused, i think)
I'm tempted to say, they did program it in Assembler..., or they had a really weird compiler...
Hi BruceUncle@Hungry Horace. I'm running Resource in superhires, interlaced. Can you cope with that resolution? Reason being that Resource wraps to 1280 pixels, which would be a pain if you're running 640 pixel width.
Files attached to this post... (bottom)
BEXT-CLEAN is the main exe as before. the other files (in a sub folder) are the extracted data blocks which should help label up some of the data (maps etc)
#define delta (-0x400+0x5c)
#define var_0060 &M[0x0060+delta]
#define var_0068 &M[0x0068+delta]
#define var_006C &M[0x006C+delta]
#define var_0070 &M[0x0070+delta]
#define var_0098 &M[0x0098+delta]
#define var_05C8 &M[0x05C8+delta]
#define var_05C9 &M[0x05C9+delta]
#define var_0656 &M[0x0656+delta]
#define var_0658 &M[0x0658+delta]
#define var_065D &M[0x065D+delta]
#define var_0C50 &M[0x0C50+delta]
#define var_13C2 &M[0x13C2+delta]
#define var_13C4 &M[0x13C4+delta]
#define var_20F4 &M[0x20F4+delta]
#define var_230A &M[0x230A+delta]
#define var_31D9 &M[0x31D9+delta]
#define var_3212 &M[0x3212+delta]
#define var_3DC0 &M[0x3DC0+delta]
#define var_41DE &M[0x41DE+delta]
#define var_41ED &M[0x41ED+delta]
#define var_447E &M[0x447E+delta]
#define var_463A &M[0x463A+delta]
#define var_463E &M[0x463E+delta]
#define var_4B1A &M[0x4B1A+delta]
#define var_505A &M[0x505A+delta]
#define var_505B &M[0x505B+delta]
#define var_5794 &M[0x5794+delta]
#define var_5864 &M[0x5864+delta]
#define var_628A &M[0x628A+delta]
#define var_685E &M[0x685E+delta]
#define var_6FA8 &M[0x6FA8+delta]
#define var_7C0E &M[0x7C0E+delta]
#define var_7C20 &M[0x7C20+delta]
#define var_7C2C &M[0x7C2C+delta]
#define var_7C3A &M[0x7C3A+delta]
#define var_7C4D &M[0x7C4D+delta]
#define var_7C6F &M[0x7C6F+delta]
#define var_7C87 &M[0x7C87+delta]
#define var_7C93 &M[0x7C93+delta]
@Hungry Horace. I'm running Resource in superhires, interlaced. Can you cope with that resolution? Reason being that Resource wraps to 1280 pixels, which would be a pain if you're running 640 pixel width.
If it's a problem just let me know and I'll put a hires environment together. I would prefer to stay in superhires as it makes using Resouce a lot easier (more real estate on screen).
@Hungry Horace. I'm running Resource in superhires, interlaced. Can you cope with that resolution? Reason being that Resource wraps to 1280 pixels, which would be a pain if you're running 640 pixel width.Sorry for the appalling delay - I had to take some enforced downtime :( .
If it's a problem just let me know and I'll put a hires environment together. I would prefer to stay in superhires as it makes using Resouce a lot easier (more real estate on screen).
I've taken a different approach with this disassembly to try to get rid of the absolute address label versus data problems that the first disassembly had. Should have the results (and the macros) ready this afternoon (OZ time).
I don't have any Amiga-tools to make those things visible. Is there any chance that you could export this to a simple txt-file?Sorry Bit, I assumed anyone interested was using Resource. It's available in the AMOS Extensions disassemblies AMOS_Extns.rar (http://www.ultimateamiga.co.uk/index.php?action=dlattach;topic=9794.0;attach=1146). But it's a steep learning curve. I've attached an asm source output by Resource if that helps.
- Compiling BEXT with barfly throws up hundreds of errors, but devpac only a few... traditionally i'm much more used to using BarFly for compiling.... what would be the cause of this ? (i appreciate this original BW resource needs more work) .... what can i do to fix it ? (i dont relally care what i end up compiling with, as long as it works!)
- I've identified many many more data blocks (including graphics and soundfx) since this original resource. Would it help to have those to do this again? Can Resource be made to substitute a datablock with a simple INC "filename" instead, or can we only do this when we get to the .asm stage?
- Can my updated labels and comments be easily exported from my most recent .rs (attached) and put into a new resource of your original file, to better match what you did with BEXT?
- there are some lines where fixed numbers are used, that should probably be declared (e.g. #ZendikCharacter should be used for #$40 in some locations) ... can we do this in Resource, or again, is this more for the .asm output?
As much as I am liking how much i've managed to edit the game thanks to the resource, i must admit, coding patches and relocating code in memory is much much harder than it would be compared to simply re-compiling the game with my changes!
All help/comments etc very welcome :)Hi HH, attachment BLOODWYCH_HH_024.rs.uaem.zip only has a 1k file in it :'( so could you please repost?
All help/comments etc very welcome :)Hi HH, attachment BLOODWYCH_HH_024.rs.uaem.zip only has a 1k file in it :'( so could you please repost?
adrEA005A0C:
dc.w $0000 ;0000
dc.w $0022,$002A,$0078,$00A8,$00AE,$0122,$014A,$0150 ;0022002A007800A800AE0122014A0150
dc.w $015A,$0160,$0168,$01CA,$01D2,$01D8,$01DE,$0224 ;015A0160016801CA01D201D801DE0224
dc.w $022A,$0272,$02A8,$02E8,$02F0,$02F6,$02FC,$0302 ;022A027202A802E802F002F602FC0302
dc.w $0310,$0422,$047C,$0484,$052A,$0530,$053E,$FFFA ;03100422047C0484052A0530053EFFFA
dc.w $0544,$013E,$062C,$0642,$064C,$067E,$06BA ;0544013E062C0642064C067E06BA
Adding FFFA to the basic offset given byAdding FFFA to the basic offset given byYou're forgetting that we're dealing with absolute addresses here where the final resting place for the code is with GameStart at $000400. So the target address of $005A5E hits legitimate code. One byte after the label Byte_005AD is where it points to, which is showing as data in the disassembly. But setting it as code gives (I've manually inserted the label adrEA005A5E):
lea adrEA005A64.l,a0 ;41F900005A64
results in adress 5A5E - and that will run into an illegal opcode.
Any idea about that one? Is that known?
Byte_005A5D: dc.b $00
adrEA005A5E: move.b #$08,$0025(a4)
adrEA005A64: moveq #$00,d4
adrCd | Address referenced by a branch or subroutine call, so is definitely code. |
adrLp | Address referenced by DBcc instruction, also definitely code. Overwrites any previous label. |
adrEA | Address reference by LEA instruction, may be code or data. |
adrB_ | Address is data referenced as Bytes. |
adrW_ | Address is data referenced as Words. |
adrL_ | Address is data referenced as Longs. |
adrJT | Address is the start of a Jump Table, either long absolutes or word offsets. Overwrites any previous label. |
adrJB | Address is the Base Effective Address used by a Jump Table of word offsets. Overwrites any previous label. |
adrJC | Address is a target address referenced by a Jump Table, of either long absolutes or word offsets. Overwrites any previous label. |
this is great bruceuncle.Do neither just yet. I'm re-doing the original to the same standard. Then the labels from the file you posted will be laid over the result. It's better to keep it in Resource as long as possible so that it takes care of the references.
There's a lot of code shared between the two games, so i should be able to start getting quite a few labels in there.
Is it worth me pasting here, so they can go into Resource, or should i just crack on with putting them into the ASM file? :)
lea adrEA04D5B2.l,a1
(i think this the book turning, which is used only once)lea adrAllGraphics.l+#PageTurnOffset,a1
place(x)=$04D0B2-_difval : name$(x)="44" : inc x
place(x)=$04D0E2-_difval : name$(x)="45" : inc x
place(x)=$04D112-_difval : name$(x)="46" : inc x
place(x)=$04D5B2-_difval : name$(x)="47" : inc x
place(x)=$04D5E2-_difval : name$(x)="48" : inc x
place(x)=$04E522-_difval : name$(x)="49" : inc x
place(x)=$04F9B2-_difval : name$(x)="50" : inc x
place(x)=$04F9BA-_difval : name$(x)="51" : inc x
place(x)=$04FC72-_difval : name$(x)="52" : inc x
place(x)=$04FC92-_difval : name$(x)="53" : inc x
place(x)=$04FF12-_difval : name$(x)="54" : inc x
place(x)=$050A32-_difval : name$(x)="55" : inc x
place(x)=$050B3A-_difval : name$(x)="56" : inc x
adrJT00B58A:
dc.w adrJC00B322-adrJT00B58A
dc.w adrJC00AD12-adrJT00B58A
dc.w adrJC00B164-adrJT00B58A
dc.w adrJC00B148-adrJT00B58A
dc.w adrJC00B374-adrJT00B58A
dc.w adrJC00B374-adrJT00B58A
PlaySound:
; formerly adrCd00968E
; === input d0 = sample number
move.w d1,-(sp)
move.w #$0001,_custom+dmacon.l
move.w #$0080,_custom+intena.l
asl.w #$02,d0
lea AudioSample1.l,a0 ; formerly adrEA051A82
adda.w AudioSampleOffsets(pc,d0.w),a0
move.w AudioSampleOffsets+#2(pc,d0.w),d0 ; <<< not permitted by DevPac :(
lea $0030(a0),a0
move.w -$0002(a0),d1
lsr.w #$01,d1
asl.w #$02,d0
move.l a0,_custom+aud.l
move.w d1,_custom+aud0+ac_len.l
move.w #$0040,_custom+aud0+ac_vol.l
move.w d0,_custom+aud0+ac_per.l
move.w (a0),_custom+aud0+ac_dat.l
move.w #$0078,d1
adrLp0096E0:
dbra d1,adrLp0096E0
move.w #$8001,_custom+dmacon.l
move.w #$0078,d1
adrLp0096F0:
dbra d1,adrLp0096F0
move.w #$0080,_custom+intreq.l
move.w #$8080,_custom+intena.l
move.w (sp)+,d1
rts
AudioSampleOffsets:
dc.w $0000 ; sample 1 offset
dc.w $0028 ;
dc.w $0000 ; < sample 1 offset
dc.w $009B ; < sample 1 playback rate?
dc.w $0084 ; < sample 2 offset (length of AS1)
dc.w $005D ;
dc.w $0646 ; < sample 3 offset (length of AS1 + length of AS2)
dc.w $0028 ;
dc.w $1ECE ; < sample 4 offset (length of AS1 + length of AS2 +length of AS3)
dc.w $0049 ;
dc.w $3684 ; < sample 5 offset
dc.w $0049
Slow down - the danger to mix up things is big (i know what i'm speaking off)!Quite right. If the intent is to start modifying the disassembly, then there's a LOT more work to be done in Resource before you get to that stage. I'm doing some of that for you guys but you will need to do a lot of checking yourselves.
Don't know if you already found it - took me ages, but the function that generates a random number is at 5218 in the normal version.
5214 calls that to produce a value between 0 and 100 (in D0), 5208 calls it to generate a random byte (in D0) with an offset added that can be set in data-byte 5207. I think this one is important.
adrCd0055BC SWAP D1
MOVEQ #0,D0
MOVE.B (adrB_0055DE).L,D0
MOVE.W D0,D1
LSR.B #3,D1
EOR.B D0,D1
LSR.B #1,D1
ROXR.B #1,D0
MOVE.B D0,(adrB_0055DE).L
SWAP D1
MULU.W D1,D0
SWAP D0
void func_05208(void)
{
move_q(1, DREG1);
CALL func_05218();
swap_w(DREG0);
add_b(data_05207, DREG0);
}
void func_05214(void)
{
move_w(hex(0x6400), DREG1);
OPEN_END(func_05218)
}
void func_05218(void)
{
swap_w(DREG1);
move_q(hex(0x0), DREG0);
move_b(data_0523A, DREG0);
move_w(DREG0, DREG1);
lsr_b(hex(0x3), DREG1);
eor_b(DREG0, DREG1);
lsr_b(1, DREG1);
roxr_b(1, DREG0);
move_b(DREG0, data_0523A);
swap_w(DREG1);
mulu_w(DREG1, DREG0);
swap_w(DREG0);
}
lbC001C2E:
move.w #$FFFF,lbW001F66.l
001C36 movem.w d0/d1,-(sp)
001C3A moveq #-$01,d5
001C3C bsr.l lbC009500
001C40 bcc.s lbC001C9A
...
lbC001C9A:
rts
BW_001 | BW binary file as assembled |
BW_001.asm | BW source file (edited for Devpac) |
BW_001.rs | BW Resource file |
BW_001_labels.csv | BW Labels in CSV format |
BW_EXT_001 | BW_EXT binary file as assembled |
BW_EXT_001.asm | BW_EXT source file (edited for Devpac) |
BW_EXT_001.rs | BW_EXT Resource file |
BW_EXT_001_labels.csv | BW_EXT Labels in CSV format |
BW_Output_Labels.rsmacro | Resource macro to output labels |
BW_Output_Labels.s | Resource macro source |
Open newlabels.txt
For x=1 to last line of file
Take line X
- get new name
- get offset
Jump to offset
Relabel (assume all referring code is changed to this reference)
Next
save .rs
adrCd007BE8:
bsr adrCd007D6C ;61000182
lea adrEA050362.l,a1 ;43F900050362
move.l #$00050006,d5 ;2A3C00050006 ;Long Addr replaced with Symbol
move.l screen_ptr.l,a0 ;207900008D36
add.w #$0DE8,a0 ;D0FC0DE8
add.w $000A(a5),a0 ;D0ED000A
lea $70,a3 ;47F80070
bra adrCd00CCB8 ;600050AC
adrEA007C0E:
dc.b $5F ;5F
dc.b $3C ;3C
dc.b $24 ;24
dc.b $3C ;3C
dc.b $10 ;10
lea $70,a3 ;47 F8 00 70 ; CUPLRIT <<< compiles as 47 F9 00 00 00 70
Sorry BruceUncle - looks like this compiled version doesnt work - it throws up an error at $8916?Sorry, sorry. All my (embarrassing) fault :-[ .
Strict ASM | Strict Op-Code |
CMPI #value,<effective address> | $0Cxx |
Relaxed ASM | Relaxed Op-Code |
CMP #value,<effective address> | $Bxxx |
_copyprot: move.l #$8488ffc4,$24.w
moveq #0,d0
rts
_copyprot: move.l #$4f8b3912,$24.w
moveq #0,d0
rts
;move.l #adrL_01000A,d7 ;2E3C0001000A
move.l #$0001000A,d5 ;2A3C00010008
;add.l #adrL_010040,d5 ;068500010040
add.l #$00010040,d5 ;068500010040;
;move.l #adrL_04080C,adrEA00B4C0.l ;23FC0004080C0000B4C0
move.l #04080C,adrEA00B4C0.l ;23FC0004080C0000B4C0
adrCd00AD2E:
add.l #$000396F0,a1 ;D3FC000396F0 ;Long Addr replaced with Symbol
add.l #GFX_Bodies,a1 ;D3FC000396F0
I don't know what any of this means but keep up the good work all, seems like your making good progress in understanding the source. :)
nailed another one... definately at least part of the cause of the graphical glitches:Code: [Select]adrCd00AD2E:
add.l #$000396F0,a1 ;D3FC000396F0 ;Long Addr replaced with Symbol
This is erroneously replaced as a number, and *does* refer to a label :)
I think the label should be GFX_Bodies (396F0 - $3A4 = $3934C, which appears to be that) ... however, it's not fixing it here, so maybe i've made some other fix above incorrectly, and i should probably revert back to 002 and add each fix in turn!
edit : (again)
fixed code:Code: [Select]add.l #GFX_Bodies,a1 ;D3FC000396F0
:D
I have a modification to the main menu text which therefore affects the entire game (in terms of offsets) .... i've also taken out the copy protection, using the above mentioned new code.... the fact that all the graphics now appear correctly, and the game seems to run, is a major breakthrough i think :)