class Metasm::ARM64::RegList
Attributes
list[RW]
Public Class Methods
new(l=[])
click to toggle source
# File metasm/cpu/arm64/main.rb, line 88 def initialize(l=[]) @list = l end
Public Instance Methods
render()
click to toggle source
# File metasm/cpu/arm64/render.rb, line 71 def render r = ['{'] @list.each { |l| r << l << ', ' } r[-1] = '}' r << '^' if usermoderegs r end