Fixed cycle counts in disassembly.

Fixed the cycle count for single op indirect and autoincrement
addressing.
This commit is contained in:
Mario Werner 2013-05-26 13:47:34 +02:00 committed by Daniel Beer
parent c141f5e5e1
commit ef41b1cbab
1 changed files with 1 additions and 1 deletions

View File

@ -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: