]>
Commit | Line | Data |
---|---|---|
fecd2382 RP |
1 | /* ns32k-opcode.h -- Opcode table for National Semi 32k processor |
2 | Copyright (C) 1987 Free Software Foundation, Inc. | |
3 | ||
4 | This file is part of GAS, the GNU Assembler. | |
5 | ||
6 | GAS is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 1, or (at your option) | |
9 | any later version. | |
10 | ||
11 | GAS is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with GAS; see the file COPYING. If not, write to | |
18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | ||
20 | ||
21 | #ifdef SEQUENT_COMPATABILITY | |
22 | #define DEF_MODEC 20 | |
23 | #define DEF_MODEL 21 | |
24 | #endif | |
25 | ||
26 | #ifndef DEF_MODEC | |
27 | #define DEF_MODEC 20 | |
28 | #endif | |
29 | ||
30 | #ifndef DEF_MODEL | |
31 | #define DEF_MODEL 20 | |
32 | #endif | |
33 | ||
34 | #define MAX_ARGS 4 | |
35 | #define ARG_LEN 50 | |
36 | ||
37 | #ifdef __STDC__ | |
38 | ||
39 | void fix_new_ns32k(fragS *frag, | |
40 | int where, | |
41 | void *add_symbol, /* really symbolS */ | |
42 | void *sub_symbol, /* really symbolS */ | |
43 | long offset, | |
44 | int pcrel, | |
45 | int pcrel_adjust, | |
46 | int im_disp, | |
47 | void *bit_fixP, /* really bit_fixS */ | |
48 | int bsr); | |
49 | ||
50 | #else /* __STDC__ */ | |
51 | ||
52 | void fix_new_ns32k(); | |
53 | ||
54 | #endif /* __STDC__ */ | |
55 | ||
56 | ||
57 | /* end of tc-ns32k.h */ |