move put string to string where it belongs

This commit is contained in:
Torsten Ruger
2015-07-01 21:45:41 +03:00
parent f8ba77dff7
commit 7136450bde
4 changed files with 19 additions and 8 deletions

View File

@ -0,0 +1,14 @@
module Register
module Builtin
module Word
module ClassMethods
def putstring context
function = Virtual::CompiledMethodInfo.create_method(:Word , :putstring , [] )
Kernel.emit_syscall( function , :putstring )
function
end
end
extend ClassMethods
end
end
end