我无法确定天气以在寄存器中加载注册表中的数据内容,或者在执行LDI时间接地使用值的地址加载寄存器。
示例:
x3000 LDI R6, far
x3001 ...(some command)
x3002 ...(some command)
x3003 far x6000
...
x6000 xf000
在使用x3000之后R6中的数据是什么?
答案 0 :(得分:0)
以此为例
.orig x3000
LDI R6, far
ADD R0,R0,#0
ADD R0,R0,#0
far .fill x6000
.end
汇编和转储
hexdump -C test.obj
00000000 30 00 ac 02 10 20 10 20 60 00 |0.... . `.|
0000000a
并用手拆解
0x3000: 0xAC02 ldi r6,#+2
0x3001: 0x1020 add r0,r0,#0
0x3002: 0x1020 add r0,r0,#0
0x3003: 0x6000
LDI指令执行此操作:
DR = mem[mem[PC† + SEXT(PCoffset9)]];
setcc();
指令的低9位为0x002,符号扩展为0x0002。 pc是修改后的pc,因此当执行地址0x3000的指令时,pc实际上是0x3001所以
DR = mem[mem[0x3001+0x0002]]
DR = mem[mem[0x3003]]
DR = mem[0x6000]
DR = 0xF000 using your definition for what lives at address x6000.
DR is r6 so 0xF000 is stored in r6.
0xF000 is considered a negative so the flags are N = 1, Z = 0, P = 0 if I understand the flags correctly.