Some checks failed
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Failing after 13m15s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Failing after 13m1s
sm-rpc / build (Release, host.gcc) (push) Failing after 13m14s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Failing after 13m35s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Failing after 13m56s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Failing after 14m22s
sm-rpc / build (Debug, host.gcc) (push) Failing after 14m49s
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Failing after 15m13s
26 lines
658 B
C
26 lines
658 B
C
/*
|
|
operands.h
|
|
|
|
diStorm3 - Powerful disassembler for X86/AMD64
|
|
http://ragestorm.net/distorm/
|
|
distorm at gmail dot com
|
|
Copyright (C) 2003-2021 Gil Dabah
|
|
This library is licensed under the BSD license. See the file COPYING.
|
|
*/
|
|
|
|
|
|
#ifndef OPERANDS_H
|
|
#define OPERANDS_H
|
|
|
|
#include "config.h"
|
|
#include "decoder.h"
|
|
#include "prefix.h"
|
|
#include "instructions.h"
|
|
|
|
int operands_extract(_CodeInfo* ci, _DInst* di, _InstInfo* ii,
|
|
_iflags instFlags, _OpType type,
|
|
unsigned int modrm, _PrefixState* ps, _DecodeType effOpSz,
|
|
_DecodeType effAdrSz, _Operand* op);
|
|
|
|
#endif /* OPERANDS_H */
|