2015-07-01 20:45:41 +02:00
|
|
|
module Register
|
|
|
|
module Builtin
|
|
|
|
module Word
|
|
|
|
module ClassMethods
|
|
|
|
def putstring context
|
2015-10-14 15:16:03 +02:00
|
|
|
function = Virtual::MethodSource.create_method(:Word,:Integer , :putstring , [] )
|
2015-07-01 20:45:41 +02:00
|
|
|
Kernel.emit_syscall( function , :putstring )
|
|
|
|
function
|
|
|
|
end
|
|
|
|
end
|
|
|
|
extend ClassMethods
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|