]> git.sur5r.net Git - cc65/blob - src/ld65/o65.h
This commit was generated by cvs2svn to compensate for changes in r2,
[cc65] / src / ld65 / o65.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                   o65.h                                   */
4 /*                                                                           */
5 /*                  Module to handle the o65 binary format                   */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1999     Ullrich von Bassewitz                                        */
10 /*              Wacholderweg 14                                              */
11 /*              D-70597 Stuttgart                                            */
12 /* EMail:       uz@musoftware.de                                             */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef O65_H
37 #define O65_H
38
39
40
41 #include <stdio.h>
42
43 #include "extsyms.h"
44 #include "config.h"
45
46
47
48 /*****************************************************************************/
49 /*                                   Data                                    */
50 /*****************************************************************************/
51
52
53
54 /* Structure describing the format */
55 typedef struct O65Desc_ O65Desc;
56
57 /* Option tags */
58 #define O65OPT_FILENAME         0
59 #define O65OPT_OS               1
60 #define O65OPT_ASM              2
61 #define O65OPT_AUTHOR           3
62 #define O65OPT_TIMESTAMP        4
63
64 /* Operating system codes for O65OPT_OS */
65 #define O65OS_OSA65             1
66 #define O65OS_LUNIX             2
67
68
69
70 /*****************************************************************************/
71 /*                                   Code                                    */
72 /*****************************************************************************/
73
74
75
76 O65Desc* NewO65Desc (void);
77 /* Create, initialize and return a new O65 descriptor struct */
78
79 void FreeO65Desc (O65Desc* D);
80 /* Delete the descriptor struct with cleanup */
81
82 void O65Set816 (O65Desc* D);
83 /* Enable 816 mode */
84
85 void O65SetLargeModel (O65Desc* D);
86 /* Enable a large memory model executable */
87
88 void O65SetAlignment (O65Desc* D, unsigned Align);
89 /* Set the executable alignment */
90
91 void O65SetOption (O65Desc* D, unsigned Type, const void* Data, unsigned DataLen);
92 /* Set an o65 header option */
93
94 void O65SetOS (O65Desc* D, unsigned OS);
95 /* Set an option describing the target operating system */
96
97 ExtSym* O65GetImport (O65Desc* D, const char* Ident);
98 /* Return the imported symbol or NULL if not found */
99
100 void O65SetImport (O65Desc* D, const char* Ident);
101 /* Set an imported identifier */
102
103 ExtSym* O65GetExport (O65Desc* D, const char* Ident);
104 /* Return the exported symbol or NULL if not found */
105
106 void O65SetExport (O65Desc* D, const char* Ident);
107 /* Set an exported identifier */
108
109 void O65WriteTarget (O65Desc* D, File* F);
110 /* Write an o65 output file */
111
112
113
114 /* End of o65.h */
115
116 #endif
117
118
119