fix binary code offset when calling

in other words, remember the arm pipeline being 8
This commit is contained in:
Torsten Ruger
2018-05-29 17:03:20 +03:00
parent 4b34546c11
commit b81d9565de
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ module Arm
Risc::Position.set(@binary , 0)
code = @machine.call( bin ,{} )#this jumps to the next instruction
Risc::Position.set(code , 0, @binary)
assert_code code , :call, [0x09,0x0,0x0,0xeb]
assert_code code , :call, [0x08,0x0,0x0,0xeb]
end
def test_swi
code = @machine.swi( 0x05 )