forked from Imagelibrary/binutils-gdb
* simops.c (REG0_16): Fix typo.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user