microprobe.target.isa.register.Register

class Register[source]

Bases: ABC

Abstract class to represent an architecture register.

abstract __init__()[source]

Methods

__init__()

codification()

Return the assembly representation of this register.

representation()

Return the assembly representation of this register.

Attributes

description

Register description (str instance).

name

Register name (str instance).

type

Register type (RegisterType instance).




abstract property type: RegisterType

Register type (RegisterType instance).

abstract property name: str

Register name (str instance).

abstract property description: str

Register description (str instance).

abstract representation() str[source]

Return the assembly representation of this register.

abstract codification() str[source]

Return the assembly representation of this register.