class Metasm::ARM::RegList

Attributes

list[RW]
usermoderegs[RW]

Public Class Methods

new(l=[]) click to toggle source
# File metasm/cpu/arm/main.rb, line 55
def initialize(l=[])
        @list = l
end

Public Instance Methods

render() click to toggle source
# File metasm/cpu/arm/render.rb, line 45
def render
        r = ['{']
        @list.each { |l| r << l << ', ' }
        r[-1] = '}'
        r << '^' if usermoderegs
        r
end