10 lines
167 B
Ruby
10 lines
167 B
Ruby
module Vm
|
|
class Reference < Word
|
|
# needs to be here as Word's constructor is private (to make it abstract)
|
|
def initialize reg
|
|
super
|
|
end
|
|
|
|
end
|
|
end
|