2014-06-14 20:29:57 +02:00
|
|
|
module Vm
|
2014-06-14 22:48:12 +02:00
|
|
|
class Reference < Word
|
2014-06-14 20:29:57 +02:00
|
|
|
# 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
|
2014-06-14 20:29:57 +02:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|