Fixed bug that was reported (with patch) on gnu.utils.bug.

Immediate operands of the pushw instruction were being output as 32
bits, rather than the 16 bits they were supposed to be.
This commit is contained in:
jtc 1993-09-24 17:19:16 +00:00
parent 06c199bb44
commit d7607730b7
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
* Modified 1991 by Donn Seeley at UUNET Technologies, Inc.
*
* from: @(#)i386-opcode.h 6.3 (Berkeley) 5/8/91
* $Id: i386-opcode.h,v 1.3 1993/08/04 00:21:42 jtc Exp $
* $Id: i386-opcode.h,v 1.4 1993/09/24 17:19:16 jtc Exp $
*/
/* i386-opcode.h -- Intel 80386 opcode table
@ -58,7 +58,7 @@ template i386_optab[] = {
{"push", 1, 0x50, _, ShortForm, WordReg,0,0 },
{"push", 1, 0xff, 0x6, Modrm, WordReg|WordMem, 0, 0 },
{"push", 1, 0x6a, _, NoModrm, Imm8S, 0, 0},
{"push", 1, 0x68, _, NoModrm, Imm32, 0, 0},
{"push", 1, 0x68, _, NoModrm, Imm16|Imm32, 0, 0},
{"push", 1, 0x06, _, Seg2ShortForm, SReg2,0,0 },
{"push", 1, 0x0fa0, _, Seg3ShortForm, SReg3,0,0 },
/* push all */