capstone/tests
Axel 0vercl0k Souchet 779d4c75d9 first changes to get a successfully compiled version of capstone on VS2012 2014-05-08 23:44:49 +01:00
..
Makefile Remove unneeded -fPIC in tests 2014-05-08 11:37:55 -05:00
README initial import 2013-11-27 12:11:31 +08:00
test.c first changes to get a successfully compiled version of capstone on VS2012 2014-05-08 23:44:49 +01:00
test_arm.c tests: C89 2014-04-11 10:15:26 +08:00
test_arm64.c tests: C89 2014-04-11 10:15:26 +08:00
test_detail.c tests: more C89 fixes 2014-04-11 12:15:33 +08:00
test_mips.c tests: C89 2014-04-11 10:15:26 +08:00
test_ppc.c tests: C89 2014-04-11 10:15:26 +08:00
test_skipdata.c SKIPDATA: add 1 more argument to callback function pointing to the input buffer of cs_disasm_ex() 2014-04-14 14:53:13 +08:00
test_sparc.c tests: C89 2014-04-11 10:15:26 +08:00
test_systemz.c tests: C89 2014-04-11 10:15:26 +08:00
test_x86.c tests: C89 2014-04-11 10:15:26 +08:00

README

This directory contains some test code to show how to use Capstone API.

- test.c
  This code shows the most simple form of API where we only want to get basic
  information out of disassembled instruction, such as address, mnemonic and
  operand string.

- test_detail.c:
  This code shows how to access to architecture-neutral information in disassembled
  instructions, such as implicit registers read/written, or groups of instructions
  that this instruction belong to.

- test_<arch>.c
  These code show how to access architecture-specific information for each
  architecture.