2 |
7u83 |
1 |
/*
|
|
|
2 |
Crown Copyright (c) 1997
|
|
|
3 |
|
|
|
4 |
This TenDRA(r) Computer Program is subject to Copyright
|
|
|
5 |
owned by the United Kingdom Secretary of State for Defence
|
|
|
6 |
acting through the Defence Evaluation and Research Agency
|
|
|
7 |
(DERA). It is made available to Recipients with a
|
|
|
8 |
royalty-free licence for its use, reproduction, transfer
|
|
|
9 |
to other parties and amendment for any purpose not excluding
|
|
|
10 |
product development provided that any such use et cetera
|
|
|
11 |
shall be deemed to be acceptance of the following conditions:-
|
|
|
12 |
|
|
|
13 |
(1) Its Recipients shall ensure that this Notice is
|
|
|
14 |
reproduced upon any copies or amended versions of it;
|
|
|
15 |
|
|
|
16 |
(2) Any amended version of it shall be clearly marked to
|
|
|
17 |
show both the nature of and the organisation responsible
|
|
|
18 |
for the relevant amendment or amendments;
|
|
|
19 |
|
|
|
20 |
(3) Its onward transfer from a recipient to another
|
|
|
21 |
party shall be deemed to be that party's acceptance of
|
|
|
22 |
these conditions;
|
|
|
23 |
|
|
|
24 |
(4) DERA gives no warranty or assurance as to its
|
|
|
25 |
quality or suitability for any purpose and DERA accepts
|
|
|
26 |
no liability whatsoever in relation to any use to which
|
|
|
27 |
it may be put.
|
|
|
28 |
*/
|
|
|
29 |
|
|
|
30 |
|
|
|
31 |
/* 80x86/assembler.h */
|
|
|
32 |
|
|
|
33 |
/**********************************************************************
|
|
|
34 |
$Author: release $
|
|
|
35 |
$Date: 1998/03/16 11:25:20 $
|
|
|
36 |
$Revision: 1.2 $
|
|
|
37 |
$Log: assembler.h,v $
|
|
|
38 |
* Revision 1.2 1998/03/16 11:25:20 release
|
|
|
39 |
* Modifications prior to version 4.1.2.
|
|
|
40 |
*
|
|
|
41 |
* Revision 1.1.1.1 1998/01/17 15:55:51 release
|
|
|
42 |
* First version to be checked into rolling release.
|
|
|
43 |
*
|
|
|
44 |
* Revision 1.5 1997/10/10 18:24:51 pwe
|
|
|
45 |
* prep ANDF-DE revision
|
|
|
46 |
*
|
|
|
47 |
* Revision 1.4 1996/02/08 13:45:10 pwe
|
|
|
48 |
* Linux elf v aout option
|
|
|
49 |
*
|
|
|
50 |
* Revision 1.3 1995/10/09 15:13:58 pwe
|
|
|
51 |
* dynamic initialisation etc
|
|
|
52 |
*
|
|
|
53 |
* Revision 1.2 1995/01/30 12:55:55 pwe
|
|
|
54 |
* Ownership -> PWE, tidy banners
|
|
|
55 |
*
|
|
|
56 |
* Revision 1.1 1994/10/27 14:15:22 jmf
|
|
|
57 |
* Initial revision
|
|
|
58 |
*
|
|
|
59 |
* Revision 1.1 1994/07/12 14:00:36 jmf
|
|
|
60 |
* Initial revision
|
|
|
61 |
*
|
|
|
62 |
**********************************************************************/
|
|
|
63 |
|
|
|
64 |
#ifndef assembler_key
|
|
|
65 |
#define assembler_key 1
|
|
|
66 |
|
|
|
67 |
|
|
|
68 |
extern void outbyte PROTO_S ((void));
|
|
|
69 |
extern void outshort PROTO_S ((void));
|
|
|
70 |
extern void outlong PROTO_S ((void));
|
|
|
71 |
|
|
|
72 |
extern void align_label PROTO_S ((int f, exp jr));
|
|
|
73 |
extern void eval_postlude PROTO_S ((char *s, exp c));
|
|
|
74 |
extern void out_readonly_section PROTO_S ((void));
|
|
|
75 |
extern void out_dot_comm PROTO_S ((char *id, shape sha));
|
|
|
76 |
extern void out_dot_lcomm PROTO_S ((char *id, shape sha));
|
|
|
77 |
extern void out_bss PROTO_S ((char *id, shape sha));
|
|
|
78 |
|
|
|
79 |
extern void pic_prelude PROTO_S ((void));
|
|
|
80 |
|
|
|
81 |
extern void out_switch_jump PROTO_S ((int tab, where a, int min));
|
|
|
82 |
extern void out_switch_table PROTO_S ((int tab, int min, int max,
|
|
|
83 |
int *v, int absent));
|
|
|
84 |
|
|
|
85 |
extern void proc_size PROTO_S ((char *s));
|
|
|
86 |
extern void proc_type PROTO_S ((char *s));
|
|
|
87 |
extern void dot_align PROTO_S ((int n));
|
|
|
88 |
extern void outend PROTO_S ((void));
|
|
|
89 |
|
|
|
90 |
extern void outopenbr PROTO_S ((void));
|
|
|
91 |
extern void outclosebr PROTO_S ((void));
|
|
|
92 |
extern void outdivsym PROTO_S ((void));
|
|
|
93 |
|
|
|
94 |
extern void out_initialiser PROTO_S ((char *id));
|
|
|
95 |
|
|
|
96 |
#if islinux || isfreebsd
|
|
|
97 |
#if islinux
|
|
|
98 |
extern void set_linux_format PROTO_S ((int elf)); /* machine.c */
|
|
|
99 |
#endif
|
|
|
100 |
extern void out_main_prelude PROTO_S ((void));
|
|
|
101 |
extern void out_main_postlude PROTO_S ((void));
|
|
|
102 |
#endif
|
|
|
103 |
|
|
|
104 |
|
|
|
105 |
#endif
|