class Metasm::Ia32::CCompiler::Address
some address
Attributes
modrm[RW]
target[RW]
Public Class Methods
new(modrm, target=nil)
click to toggle source
# File metasm/cpu/ia32/compile_c.rb, line 67 def initialize(modrm, target=nil) @modrm, @target = modrm, target end
Public Instance Methods
sz()
click to toggle source
# File metasm/cpu/ia32/compile_c.rb, line 70 def sz; @modrm.adsz end
to_s()
click to toggle source
# File metasm/cpu/ia32/compile_c.rb, line 71 def to_s; "#<Address: #@modrm>" end