class Metasm::X86_64::CCompiler::Address

some address

Attributes

modrm[RW]
target[RW]

Public Class Methods

new(modrm, target=nil) click to toggle source
# File metasm/cpu/x86_64/compile_c.rb, line 66
def initialize(modrm, target=nil)
        @modrm, @target = modrm, target
end

Public Instance Methods

sz() click to toggle source
# File metasm/cpu/x86_64/compile_c.rb, line 69
def sz; @modrm.adsz end
to_s() click to toggle source
# File metasm/cpu/x86_64/compile_c.rb, line 70
def to_s; "#<Address: #@modrm>" end