class Metasm::MSP430::Reg

Constants

Sym

Attributes

i[RW]

Public Class Methods

new(i) click to toggle source
# File metasm/cpu/msp430/main.rb, line 22
def initialize(i) ; @i = i end

Public Instance Methods

==(o) click to toggle source
# File metasm/cpu/msp430/main.rb, line 25
def ==(o) ; o.class == self.class and o.i == @i end
render() click to toggle source
# File metasm/cpu/msp430/main.rb, line 24
def render ; [Sym[@i].to_s] end
symbolic(di=nil) click to toggle source
# File metasm/cpu/msp430/main.rb, line 23
def symbolic(di=nil) ; Sym[@i] end