mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-23 05:29:53 +00:00
404edd5772
* fix tricore compiler warn `-Wmissing-prototypes` * include cstool.h
26 lines
473 B
C
26 lines
473 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <capstone/capstone.h>
|
|
#include "cstool.h"
|
|
|
|
void print_insn_detail_evm(csh handle, cs_insn *ins)
|
|
{
|
|
cs_evm *evm;
|
|
|
|
// detail can be NULL on "data" instruction if SKIPDATA option is turned ON
|
|
if (ins->detail == NULL)
|
|
return;
|
|
|
|
evm = &(ins->detail->evm);
|
|
|
|
if (evm->pop)
|
|
printf("\tPop: %u\n", evm->pop);
|
|
|
|
if (evm->push)
|
|
printf("\tPush: %u\n", evm->push);
|
|
|
|
if (evm->fee)
|
|
printf("\tGas fee: %u\n", evm->fee);
|
|
}
|