Sha256: ea52796a5dc6d8c6ae0a665f69e832563a801d4f55edf48043e11730d948d25d

Contents?: true

Size: 1.46 KB

Versions: 80

Compression:

Stored size: 1.46 KB

Contents

// diStorm64 library sample
// http://ragestorm.net/distorm/
// Arkon, Stefan, 2005


#include <stdio.h>
#include <stdlib.h>

#pragma comment(lib, "../../distorm.lib")

#include "../../include/distorm.h"

// The number of the array of instructions the decoder function will use to return the disassembled instructions.
// Play with this value for performance...
#define MAX_INSTRUCTIONS (1000)

int main(int argc, char **argv)
{
	_DecodeResult res;
	_DecodedInst decodedInstructions[1000];
	unsigned int decodedInstructionsCount = 0, i = 0;
	_OffsetType offset = 0;
	unsigned int dver = distorm_version();
	printf("diStorm version: %d.%d.%d\n", (dver >> 16), ((dver) >> 8) & 0xff, dver & 0xff);

	unsigned char rawData[] = {

		0x68, 0, 0, 0, 0,
		0x9b,
		0xdf, 0xe0,
		0x66, 0xa1, 0xcc, 0xb0, 0x97, 0x7c,
		0xC7, 0xC1, 0x08, 0x00, 0x00, 0x00,
		0xc7, 0xf8, 0xaa, 0xaa, 0xaa, 0xaa,
		0x48, 0xC7, 0xC0, 0x00, 0x00, 0x00, 0x00
} ;
	res = distorm_decode(offset, (const unsigned char*)rawData, sizeof(rawData), Decode64Bits, decodedInstructions, MAX_INSTRUCTIONS, &decodedInstructionsCount);
	for (int i = 0; i < decodedInstructionsCount; i++) {
		printf("%08I64x (%02d) %-24s %s%s%s\r\n", decodedInstructions[i].offset, decodedInstructions[i].size, (char*)decodedInstructions[i].instructionHex.p, (char*)decodedInstructions[i].mnemonic.p, decodedInstructions[i].operands.length != 0 ? " " : "", (char*)decodedInstructions[i].operands.p);
	}

	return 0;
}

Version data entries

80 entries across 80 versions & 1 rubygems

Version Path
contrast-agent-7.6.1 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.6.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.5.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.4.1 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.4.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.3.2 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.3.1 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.3.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.2.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.1.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-7.0.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.15.3 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.15.2 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.15.1 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.15.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.14.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.13.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.12.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.11.0 funchook/distorm/examples/tests/main.cpp
contrast-agent-6.10.0 funchook/distorm/examples/tests/main.cpp