Subversion Repositories Kolibri OS

Rev

Rev 5191 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5191 Rev 6324
Line 1... Line 1...
1
/* Opcode table for the TI MSP430 microcontrollers
1
/* Opcode table for the TI MSP430 microcontrollers
Line 2... Line 2...
2
 
2
 
3
   Copyright 2002-2013 Free Software Foundation, Inc.
3
   Copyright (C) 2002-2015 Free Software Foundation, Inc.
Line 4... Line 4...
4
   Contributed by Dmitry Diky 
4
   Contributed by Dmitry Diky 
5
   
5
   
6
   This program is free software; you can redistribute it and/or modify
6
   This program is free software; you can redistribute it and/or modify
Line 24... Line 24...
24
struct msp430_operand_s
24
struct msp430_operand_s
25
{
25
{
26
  int ol;	/* Operand length words.  */
26
  int ol;	/* Operand length words.  */
27
  int am;	/* Addr mode.  */
27
  int am;	/* Addr mode.  */
28
  int reg;	/* Register.  */
28
  int reg;	/* Register.  */
29
  int mode;	/* Pperand mode.  */
29
  int mode;	/* Operand mode.  */
-
 
30
  int vshift;   /* Number of bytes to shift operand down.  */
30
#define OP_REG		0
31
#define OP_REG		0
31
#define OP_EXP		1
32
#define OP_EXP		1
32
#ifndef DASM_SECTION
33
#ifndef DASM_SECTION
33
  expressionS	exp;
34
  expressionS	exp;
34
#endif
35
#endif