rubyx/lib/mom/builtin/word.rb

44 lines
1.6 KiB
Ruby
Raw Normal View History

require_relative "get_internal_byte"
require_relative "set_internal_byte"
require_relative "putstring"
module Mom
module Builtin
module Word
module ClassMethods
include CompileHelper
2015-11-19 09:08:41 +01:00
2018-08-14 10:23:19 +02:00
# wrapper for the syscall
# io/file currently hardcoded to stdout
# set up registers for syscall, ie
# - pointer in r1
# - length in r2
# - emit_syscall (which does the return of an integer, see there)
2018-04-01 14:17:16 +02:00
def putstring( context)
compiler = compiler_for(:Word , :putstring ,{})
compiler.add_code Putstring.new("putstring")
return compiler
end
2015-11-19 09:08:41 +01:00
# self[index] basically. Index is the first arg > 0
2018-08-14 10:23:19 +02:00
# return a word sized new int, in return_value
#
# Note: no index (or type) checking. Method should be internal and check before.
# Which means the returned integer could be passed in, instead of allocated.
2018-04-01 14:17:16 +02:00
def get_internal_byte( context)
compiler = compiler_for(:Word , :get_internal_byte , {at: :Integer})
compiler.add_code GetInternalByte.new("get_internal_byte")
return compiler
2015-11-19 09:08:41 +01:00
end
# self[index] = val basically. Index is the first arg ( >0 , unchecked),
# value the second, which is also returned
def set_internal_byte( context )
compiler = compiler_for(:Word, :set_internal_byte , {at: :Integer , value: :Integer} )
compiler.add_code SetInternalByte.new("set_internal_byte")
return compiler
2015-11-19 09:08:41 +01:00
end
end
extend ClassMethods
end
end
end