mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
* v850-opc.c (two): Get order of words correct.
This commit is contained in:
@ -1,6 +1,8 @@
|
|||||||
start-sanitize-v850
|
start-sanitize-v850
|
||||||
Fri Aug 23 00:27:01 1996 Jeffrey A Law (law@cygnus.com)
|
Fri Aug 23 00:27:01 1996 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* v850-opc.c (two): Get order of words correct.
|
||||||
|
|
||||||
* v850-opc.c (v850_operands): I16 inserts at offset 16!
|
* v850-opc.c (v850_operands): I16 inserts at offset 16!
|
||||||
|
|
||||||
* v850-opc.c (v850_operands): Add "SR1" and "SR2" for system
|
* v850-opc.c (v850_operands): Add "SR1" and "SR2" for system
|
||||||
|
@ -17,7 +17,7 @@ static long extract_d9 PARAMS ((unsigned long, int *));
|
|||||||
#define one(x) ((unsigned int) (x))
|
#define one(x) ((unsigned int) (x))
|
||||||
|
|
||||||
/* two-word opcodes */
|
/* two-word opcodes */
|
||||||
#define two(x,y) ((unsigned int) (y) | ((unsigned int) (x) << 16))
|
#define two(x,y) ((unsigned int) (x) | ((unsigned int) (y) << 16))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user