copied asm here so that stays working while i break (an) arm

This commit is contained in:
Torsten Ruger
2014-05-03 15:13:15 +03:00
parent fae0c1ab8c
commit 1c86ecb84e
12 changed files with 686 additions and 0 deletions

13
lib/arm/arm_machine.rb Normal file
View File

@@ -0,0 +1,13 @@
require "vm/machine"
module Arm
class ArmMachine < Vm::Machine
def word_load value
"word"
end
def function_call call_value
"call"
end
end
end