really translate risc - cpu/arm

also labels.
Actual translation/assembly is much cleaner
This commit is contained in:
Torsten Ruger
2018-03-25 19:38:59 +03:00
parent eb7713a9f3
commit 279fdcc1e2
4 changed files with 26 additions and 3 deletions

View File

@ -0,0 +1,16 @@
require_relative "../helper"
module Risc
class TestTranslator < MiniTest::Test
def setup
@machine = Risc.machine.boot
@translator = Arm::Translator.new
end
def test_translate_label
label = Parfait.object_space.get_main.risc_instructions
assert @translator.translate(label) , label
end
end
end