2018-04-01 21:16:17 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Risc
|
|
|
|
class InterpretGetByte < MiniTest::Test
|
|
|
|
include Ticker
|
2018-04-02 22:25:52 +02:00
|
|
|
|
2018-04-01 21:16:17 +02:00
|
|
|
def setup
|
2018-04-01 21:19:21 +02:00
|
|
|
@string_input = as_main("return 'Hello'.get_internal_byte(1)")
|
2018-04-01 21:16:17 +02:00
|
|
|
super
|
|
|
|
end
|
|
|
|
def test_chain
|
|
|
|
#show_ticks # get output of what is
|
|
|
|
check_chain [Branch, Label, LoadConstant, SlotToReg, LoadConstant,
|
|
|
|
SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
|
|
|
SlotToReg, SlotToReg, SlotToReg, RegToSlot, LoadConstant,
|
|
|
|
SlotToReg, SlotToReg, SlotToReg, SlotToReg, RegToSlot,
|
2018-04-02 22:25:52 +02:00
|
|
|
SlotToReg, LoadConstant, RegToSlot, LoadConstant, RegToSlot,
|
|
|
|
FunctionCall, Label, LoadConstant, SlotToReg, SlotToReg,
|
2018-04-01 21:16:17 +02:00
|
|
|
RegToSlot, LoadConstant, SlotToReg, SlotToReg, SlotToReg,
|
2018-04-02 22:25:52 +02:00
|
|
|
SlotToReg, RegToSlot, LoadConstant, SlotToReg, SlotToReg,
|
|
|
|
SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
|
|
|
RegToSlot, LoadConstant, SlotToReg, SlotToReg, RegToSlot,
|
|
|
|
LoadConstant, SlotToReg, RegToSlot, SlotToReg, LoadConstant,
|
|
|
|
FunctionCall, Label, SlotToReg, SlotToReg, SlotToReg,
|
|
|
|
SlotToReg, ByteToReg, LoadConstant, SlotToReg, SlotToReg,
|
|
|
|
RegToSlot, RegToSlot, RegToSlot, SlotToReg, SlotToReg,
|
|
|
|
RegToSlot, SlotToReg, SlotToReg, FunctionReturn, SlotToReg,
|
|
|
|
SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot,
|
|
|
|
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
|
|
|
FunctionReturn, Transfer, Syscall, NilClass]
|
2018-04-01 21:16:17 +02:00
|
|
|
assert_equal Parfait::Integer , get_return.class
|
|
|
|
assert_equal "H".ord , get_return.value
|
|
|
|
end
|
|
|
|
def test_exit
|
2018-04-02 22:25:52 +02:00
|
|
|
done = ticks(88)
|
2018-04-01 21:19:21 +02:00
|
|
|
assert_equal Syscall , done.class
|
2018-04-01 21:16:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_byte_to_reg
|
2018-04-02 22:25:52 +02:00
|
|
|
done = ticks(62)
|
2018-04-01 21:16:17 +02:00
|
|
|
assert_equal ByteToReg , done.class
|
|
|
|
assert_equal "H".ord , @interpreter.get_register(done.register)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|