Torsten Rüger
dced6b12e6
the "old" way of generating compilers is now obsolete we can use ruby code with mom macros to achieve the same Three step wip remove old builtin fix tests (including adding necessary methods) fixup and inclusion of builtin code to parfait
16 lines
407 B
Ruby
16 lines
407 B
Ruby
module Mom
|
|
class SetInternalWord < Macro
|
|
def to_risc(compiler)
|
|
compiler.builder(compiler.source).build do
|
|
object! << message[:receiver]
|
|
integer! << message[:arg1] # "index"
|
|
object_reg! << message[:arg2]#"value"
|
|
integer.reduce_int
|
|
object[integer] << object_reg
|
|
message[:return_value] << object_reg
|
|
end
|
|
return compiler
|
|
end
|
|
end
|
|
end
|