ia64/xen-unstable
changeset 13911:d08c2af53804
Fix DEC instruction decode. Turn into SUB, not OR. :-)
Signed-off-by: Keir Fraser <keir@xensource.com>
Signed-off-by: Keir Fraser <keir@xensource.com>
author | kfraser@localhost.localdomain |
---|---|
date | Wed Feb 14 12:14:49 2007 +0000 (2007-02-14) |
parents | ed6501070f37 |
children | 929868cd3715 cbbd748c4b58 |
files | xen/arch/x86/hvm/platform.c |
line diff
1.1 --- a/xen/arch/x86/hvm/platform.c Wed Feb 14 12:10:01 2007 +0000 1.2 +++ b/xen/arch/x86/hvm/platform.c Wed Feb 14 12:14:49 2007 +0000 1.3 @@ -713,7 +713,7 @@ static int mmio_decode(int address_bytes 1.4 return DECODE_success; 1.5 1.6 case 1: /* dec */ 1.7 - mmio_op->instr = INSTR_OR; 1.8 + mmio_op->instr = INSTR_SUB; 1.9 return DECODE_success; 1.10 1.11 default: