rubyx/lib/vm/values/reference.rb

10 lines
167 B
Ruby
Raw Normal View History

module Vm
2014-06-14 22:48:12 +02:00
class Reference < Word
# needs to be here as Word's constructor is private (to make it abstract)
2014-06-14 22:48:12 +02:00
def initialize reg
super
end
end
end