* simops.c (REG0_16): Fix typo.

This commit is contained in:
Jeff Law 1996-12-07 16:54:57 +00:00
parent 6827a1c758
commit 2e8f4133d7
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Dec 7 09:50:28 1996 Jeffrey A Law (law@cygnus.com)
* simops.c (REG0_16): Fix typo.
Fri Dec 6 14:13:34 1996 Jeffrey A Law (law@cygnus.com)
* simops.c: Call abort for any instruction that's not currently

View file

@ -17,7 +17,7 @@
#define REG1(X) (((X) & 0xc) >> 2)
#define REG0_8(X) (((X) & 0x300) >> 8)
#define REG1_8(X) (((X) & 0xc00) >> 10)
#define REG0_16(X) (((X) & 0x30000) >> 8)
#define REG0_16(X) (((X) & 0x30000) >> 16)
#define REG1_16(X) (((X) & 0xc0000) >> 18)
/* mov imm8, dn */