rubyx/lib/register/builtin/word.rb
2015-07-03 20:13:03 +03:00

15 lines
328 B
Ruby

module Register
module Builtin
module Word
module ClassMethods
def putstring context
function = Virtual::MethodSource.create_method(:Word , :putstring , [] )
Kernel.emit_syscall( function , :putstring )
function
end
end
extend ClassMethods
end
end
end