Fixed cycle counts in disassembly.
Fixed the cycle count for single op indirect and autoincrement addressing.
This commit is contained in:
parent
c141f5e5e1
commit
ef41b1cbab
|
@ -352,7 +352,7 @@ static int step_single(struct sim_device *dev, uint16_t ins)
|
|||
else if (amode == MSP430_AMODE_REGISTER)
|
||||
cycles = 1;
|
||||
else
|
||||
cycles = 5;
|
||||
cycles = 3;
|
||||
|
||||
switch (opcode) {
|
||||
case MSP430_OP_RRC:
|
||||
|
|
Loading…
Reference in New Issue