rubyx/lib/register/mystery.rb
Torsten Ruger b100956909 renamed
2014-08-22 17:27:57 +03:00

9 lines
163 B
Ruby

module Vm
class Mystery < Word
# needs to be here as Word's constructor is private (to make it abstract)
def initilize reg
super
end
end
end