require_relative 'helper' class TestArmAsm < MiniTest::Test include ArmHelper def test_b # the address is what an assembler calculates (a signed number for the amount of instructions), # ie the relative (to pc) address -8 (pipeline) /4 so save space # so the cpu adds the value*4 and starts loading that (load, decode, execute) code = @machine.b -4 , {} #this jumps to the next instruction assert_code code , :b , [0xff,0xff,0xff,0xea] #ea ff ff fe end def test_call #see comment above. bx not implemented (as it means into thumb, and no thumb here) code = @machine.call -4 ,{} #this jumps to the next instruction assert_code code , :call, [0xff,0xff,0xff,0xeb] #ea ff ff fe end def test_bic code = @machine.bic :r2 , left: :r2 , right: :r3 assert_code code , :bic , [0x03,0x20,0xc2,0xe1] #e3 c2 20 44 end def test_cmn code = @machine.cmn :r1 , right: :r2 assert_code code , :cmn , [0x02,0x00,0x71,0xe1] #e1 71 00 02 end def test_cmp code = @machine.cmp :r1 , right: :r2 assert_code code , :cmp , [0x02,0x00,0x51,0xe1] #e1 51 00 02 end def test_push code = @machine.push [:lr] , {} assert_code code , :push , [0x00,0x40,0x2d,0xe9] #e9 2d 40 00 end def test_pop code = @machine.pop [:pc] , {} assert_code code , :pop , [0x00,0x80,0xbd,0xe8] #e8 bd 80 00 end def test_rsb code = @machine.rsb :r1 , left: :r2 , right: :r3 assert_code code , :rsb , [0x03,0x10,0x62,0xe0]#e0 62 10 03 end def test_rsc code = @machine.rsc :r2 , left: :r3 , right: :r4 assert_code code , :rsc , [0x04,0x20,0xe3,0xe0]#e0 e3 20 04 end def test_sbc code = @machine.sbc :r3, left: :r4 , right: :r5 assert_code code , :sbc , [0x05,0x30,0xc4,0xe0]#e0 c4 30 05 end def test_swi code = @machine.swi 0x05 , {} assert_code code , :swi , [0x05,0x00,0x00,0xef]#ef 00 00 05 end def test_teq code = @machine.teq :r1 , right: :r2 assert_code code , :teq , [0x02,0x00,0x31,0xe1] #e1 31 00 02 end def test_tst code = @machine.tst :r1 , right: :r2 assert_code code , :tst , [0x02,0x00,0x11,0xe1] #e1 11 00 02 end end