]> git.sur5r.net Git - cc65/blob - src/da65/output.c
bc10aea34a4c4460452a0950f0faed94543effc8
[cc65] / src / da65 / output.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 output.c                                  */
4 /*                                                                           */
5 /*                       Disassembler output routines                        */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000      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 #include <stdio.h>
37 #include <stdarg.h>
38 #include <string.h>
39 #include <errno.h>
40
41 /* da65 */
42 #include "code.h"
43 #include "error.h"
44 #include "global.h"
45 #include "output.h"
46
47
48
49 /*****************************************************************************/
50 /*                                   Data                                    */
51 /*****************************************************************************/
52
53
54
55 static FILE*    F       = 0;            /* Output stream */
56 static unsigned Col     = 1;            /* Current column */
57
58
59 /*****************************************************************************/
60 /*                                   Code                                    */
61 /*****************************************************************************/
62
63
64
65 void OpenOutput (const char* Name)
66 /* Open the given file for output */
67 {
68     /* Open the output file */
69     F = fopen (Name, "w");
70     if (F == 0) {
71         Error ("Cannot open `%s': %s", Name, strerror (errno));
72     }
73 }
74
75
76
77 void CloseOutput (void)
78 /* Close the output file */
79 {
80     if (fclose (F) != 0) {
81         Error ("Error closing output file: %s", strerror (errno));
82     }
83 }
84
85
86
87 void Output (const char* Format, ...)
88 /* Write to the output file */
89 {
90     if (Pass > 1) {
91         va_list ap;
92         va_start (ap, Format);
93         Col += vfprintf (F, Format, ap);
94         va_end (ap);
95     }
96 }
97
98
99
100 void Indent (unsigned N)
101 /* Make sure the current line column is at position N (zero based) */
102 {
103     if (Pass > 1) {
104         while (Col < N) {
105             fputc (' ', F);
106             ++Col;
107         }
108     }
109 }
110
111
112
113 void LineFeed (void)
114 /* Add a linefeed to the output file */
115 {
116     if (Pass > 1) {
117         fputc ('\n', F);
118         Col = 1;
119     }
120 }
121
122
123
124 void DefLabel (const char* Name)
125 /* Define a label with the given name */
126 {
127     Output ("%s:", Name);
128     LineFeed ();
129 }
130
131
132
133 void DataByteLine (unsigned Count)
134 /* Output a line with Count data bytes */
135 {
136     unsigned I;
137
138     Indent (MIndent);
139     Output (".byte");
140     Indent (AIndent);
141     for (I = 0; I < Count; ++I) {
142         if (I > 0) {
143             Output (",$%02X", CodeBuf[PC+I]);
144         } else {
145             Output ("$%02X", CodeBuf[PC+I]);
146         }
147     }
148     LineComment (PC, Count);
149     LineFeed ();
150 }
151
152
153
154 void DataWordLine (unsigned Count)
155 /* Output a line with Count data words */
156 {
157     unsigned I;
158
159     Indent (MIndent);
160     Output (".word");
161     Indent (AIndent);
162     for (I = 0; I < Count; I += 2) {
163         if (I > 0) {
164             Output (",$%04X", GetCodeWord (PC+I));
165         } else {
166             Output ("$%04X", GetCodeWord (PC+I));
167         }
168     }
169     LineComment (PC, Count);
170     LineFeed ();
171 }
172
173
174
175 void SeparatorLine (void)
176 /* Print a separator line */
177 {
178     Output ("; ----------------------------------------------------------------------------");
179     LineFeed ();
180 }
181
182
183
184 void LineComment (unsigned PC, unsigned Count)
185 /* Add a line comment with the PC and data bytes */
186 {
187     if (Pass > 1 && Verbosity >= 3) {
188         Indent (CIndent);
189         Output ("; %04X", PC);
190         if (Verbosity >= 4) {
191             while (Count--) {
192                 Output (" %02X", CodeBuf [PC++]);
193             }
194         }
195     }
196 }
197
198
199