# HG changeset patch # User Mike Pavone # Date 1356023544 28800 # Node ID 36f1133837d068349d0baae80cf705c9bbb493f8 # Parent 1c9a4052a2c0f409ba149aa570d9a2a2e27cc283 Fix disassembly of reg list in MOVEM when the reg list is the destination diff -r 1c9a4052a2c0 -r 36f1133837d0 68kinst.c --- a/68kinst.c Thu Dec 20 09:08:13 2012 -0800 +++ b/68kinst.c Thu Dec 20 09:12:24 2012 -0800 @@ -1172,8 +1172,8 @@ bit = 15; dir = -1; } else { - reg = 0; - bit = 1; + dir = 1; + bit = 0; } if (need_comma) { strcat(dst, ", ");