fix mvp/mvn operand order.

This commit is contained in:
Kelvin Sherlock 2019-03-21 22:08:39 -04:00
parent 7e0963e12c
commit 5da4e5c39f

View File

@ -478,7 +478,7 @@ word32 do_list(word32 address, int lines) {
(address+(int16_t)(operand)) & 0xffff);
break;
case MVPMVN:
sprintf(buffer,"$%02x,$%02x",operand & 0xff,operand >> 8);
sprintf(buffer,"$%02x,$%02x",operand >> 8, operand & 0xff);
break;
case SEPVAL:
case REPVAL: