Subversion Repositories tendra.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
/* 	$Id: out_ba.h,v 1.1.1.1 1998/01/17 15:56:00 release Exp $	 */
32
 
33
/* 
34
   out_badecs.h 
35
*/
36
 
37
/*
38
$Log: out_ba.h,v $
39
 * Revision 1.1.1.1  1998/01/17  15:56:00  release
40
 * First version to be checked into rolling release.
41
 *
42
 * Revision 1.3  1995/05/23  13:24:09  john
43
 * Change for 64 bit support
44
 *
45
 * Revision 1.2  1995/04/10  14:13:34  john
46
 * Minor changes
47
 *
48
 * Revision 1.1.1.1  1995/03/23  10:39:33  john
49
 * Entered into CVS
50
 *
51
 * Revision 1.2  1995/03/23  10:10:12  john
52
 * Changed prototypes (part of change to support scheduler).
53
 *
54
*/
55
 
56
#include "ibinasm.h"
57
#include "cross.h"
58
 
59
extern char *out_common PROTO_S ((asmsym,unsigned));
60
extern char *out_ent PROTO_S ((asmsym,unsigned,unsigned));
61
extern char *out_frame PROTO_S ((asmsym,unsigned,asmint,asmreg,asmreg));
62
extern char *out_mask PROTO_S ((asmsym,unsigned,unsigned,asmint));
63
extern char *out_verstamp PROTO_S ((int,int));
64
extern void out_loc PROTO_S ((int,unsigned));
65
extern char *out_chars PROTO_S ((asmsym,unsigned,asmint,unsigned short));
66
extern char *out_option PROTO_S ((int,int));
67
extern char *out_value PROTO_S ((asmsym,unsigned,INT64,unsigned));
68
extern void out_alias PROTO_S ((asmsym,unsigned,asmreg,asmreg));
69
extern char *out_rinst PROTO_S ((asmsym,int,asmreg,asmreg,asmformat,asmreg));
70
extern char *out_linst PROTO_S ((asmsym,int,asmreg,asmreg,asmformat,asmint));
71
extern char *out_data PROTO_S ((char *,int));
72
extern char *out_iinst PROTO_S((asmsym,int,asmreg,asmreg,asmformat,
73
			      unsigned int, int));
74
extern char *out_biinst PROTO_S((asmsym,int,asmreg,asmreg,asmformat,
75
			      unsigned int, INT64));
76
extern  FILE * ba_file;
77
 
78