diff options
author | dyson <dyson@FreeBSD.org> | 1996-11-11 19:03:51 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1996-11-11 19:03:51 +0000 |
commit | 2f9365fa023694943d0c7256736bf2feb293b8b0 (patch) | |
tree | 0a7df373ef22aa250072d09714a97eaf6c5690ef /gnu/usr.bin/as | |
parent | 18d26a12a8dc04507776976b57f39719b3cae178 (diff) | |
download | FreeBSD-src-2f9365fa023694943d0c7256736bf2feb293b8b0.zip FreeBSD-src-2f9365fa023694943d0c7256736bf2feb293b8b0.tar.gz |
Add the PPro %cr4 register to the supported registers in the
assembler.
Diffstat (limited to 'gnu/usr.bin/as')
-rw-r--r-- | gnu/usr.bin/as/opcode/i386.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/as/opcode/i386.h b/gnu/usr.bin/as/opcode/i386.h index bb50ebf..c6197c0 100644 --- a/gnu/usr.bin/as/opcode/i386.h +++ b/gnu/usr.bin/as/opcode/i386.h @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: i386.h,v 1.3 1995/05/30 04:48:01 rgrimes Exp $ */ +/* $Id: i386.h,v 1.4 1996/10/01 00:13:48 peter Exp $ */ static const template i386_optab[] = { @@ -757,6 +757,7 @@ static const reg_entry i386_regtab[] = { {"ds", SReg2, 3}, {"fs", SReg3, 4}, {"gs", SReg3, 5}, /* control registers */ {"cr0", Control, 0}, {"cr2", Control, 2}, {"cr3", Control, 3}, + {"cr4", Control, 4}, /* debug registers */ {"db0", Debug, 0}, {"db1", Debug, 1}, {"db2", Debug, 2}, {"db3", Debug, 3}, {"db6", Debug, 6}, {"db7", Debug, 7}, |