Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | 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
/**********************************************************************
32
$Author: release $
33
$Date: 1998/01/17 15:56:06 $
34
$Revision: 1.1.1.1 $
35
$Log: out_ba.h,v $
36
 * Revision 1.1.1.1  1998/01/17  15:56:06  release
37
 * First version to be checked into rolling release.
38
 *
39
 * Revision 1.1  1995/04/13  09:08:06  currie
40
 * Initial revision
41
 *
42
***********************************************************************/
43
/* out_badecs.h */
44
#include "ibinasm.h"
45
extern void out_common PROTO_S ((asmsym symno, unsigned asmtype));
46
extern void out_ent PROTO_S ((asmsym symno, unsigned asmtype, unsigned lexlev));
47
extern void out_frame PROTO_S((asmsym symno, unsigned asmtype, asmint frameoffset,
48
          asmreg framereg, asmreg pcreg));
49
extern void out_mask PROTO_S((asmsym symno, unsigned asmtype, unsigned regmask,
50
          asmint regoffsset));
51
extern void out_verstamp PROTO_S((int majornumber, int minornumber));
52
extern void out_loc PROTO_S ((unsigned filenumber, unsigned linenumber));
53
extern void out_chars PROTO_S((asmsym symno, unsigned asmtype, asmint expression,
54
          unsigned short repeat));
55
extern void out_option PROTO_S ((int x, int y));
56
extern void out_value PROTO_S((asmsym symno, unsigned asmtype, asmint expression,
57
          unsigned long repeat));
58
extern void out_alias PROTO_S((asmsym symno, unsigned asmtype, asmreg basereg1,
59
          asmreg basereg2));
60
extern void out_rinst PROTO_S((asmsym symno, unsigned char opcode, asmreg reg1, asmreg reg2,
61
          asmformat form, asmreg reg3));
62
extern void out_iinst PROTO_S((asmsym symno, unsigned char opcode, asmreg reg1, asmreg reg2,
63
          asmformat form, asmint immediate));
64
 
65
extern void out_data PROTO_S ((char *data, int size));
66
 
67
extern void out_cpload PROTO_S ((asmsym symno, asmreg reg));
68
 
69
extern  FILE * ba_file;
70
 
71