16 lines
440 B
Ruby
Raw Normal View History

module Register
module Builtin
module Word
module ClassMethods
def putstring context
function = Virtual::MethodSource.create_method(:Word,:Integer , :putstring , [] )
function.source.add_code Register.get_slot( function , :message , :receiver , :new_message )
Kernel.emit_syscall( function , :putstring )
function
end
end
extend ClassMethods
end
end
end