Skip to content

Commit 2eeea83

Browse files
authored
Merge pull request #21 from laqieer/master
bugfix: startingAddress argument in Disassemble function ignored.
2 parents 7940efa + 3d3b128 commit 2eeea83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gee.External.Capstone/CapstoneDisassembler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ public TInstruction[] Disassemble(byte[] binaryCode, long startingAddress, int c
833833
// ...
834834
//
835835
// Throws an exception if the operation fails.
836-
var instructionIterator = this.Iterate(binaryCode);
836+
var instructionIterator = this.Iterate(binaryCode, startingAddress);
837837

838838
// ...
839839
//

0 commit comments

Comments
 (0)