RegisterImpl

Class template for architecture-specific registers

Note that all architecture-specific instances, like X86Register, instantiate and derive from this one.

abstract
class RegisterImpl : Register (
TId
) if (
is(TId == enum)
) {}

Constructors

this
this(Capstone cs, int id)
Undocumented in source.

Members

Functions

id
auto id()

Retrieves register's id

Inherited Members

From Register

_id
int _id;
Undocumented in source.
idAsInt
auto idAsInt()

Retrieves register's id as plain integer

name
string name()

Returns friendly string representation of the registers's name

Meta