]> git.sur5r.net Git - cc65/blob - src/ca65/listing.h
Finished implemenation of commands to delete macros. Added the new commands to
[cc65] / src / ca65 / listing.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 listing.h                                 */
4 /*                                                                           */
5 /*                Listing support for the ca65 crossassembler                */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2003 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 52                                             */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
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 LISTING_H
37 #define LISTING_H
38
39
40
41 /* ca65 */
42 #include "fragment.h"
43
44
45
46 /*****************************************************************************/
47 /*                                   Data                                    */
48 /*****************************************************************************/
49
50
51
52 /* Length of the header of a listing line */
53 #define LINE_HEADER_LEN         24
54
55 /* One listing line as it is stored in memory */
56 typedef struct ListLine ListLine;
57 struct ListLine {
58     ListLine*           Next;           /* Pointer to next line */
59     Fragment*           FragList;       /* List of fragments for this line */
60     Fragment*           FragLast;       /* Last entry in fragment list */
61     unsigned long       PC;             /* Program counter for this line */
62     unsigned char       Reloc;          /* Relocatable mode? */
63     unsigned char       File;           /* From which file is the line? */
64     unsigned char       Depth;          /* Include depth */
65     unsigned char       Output;         /* Should we output this line? */
66     unsigned char       ListBytes;      /* How many bytes at max? */
67     char                Line[1];        /* Line with dynamic length */
68 };
69
70 /* Single linked list of lines */
71 extern ListLine*        LineList;       /* List of listing lines */
72 extern ListLine*        LineCur;        /* Current listing line */
73 extern ListLine*        LineLast;       /* Last listing line */
74
75 /* Page formatting */
76 #define MIN_PAGE_LEN    32
77 #define MAX_PAGE_LEN    127
78 extern int              PageLength;     /* Length of a listing page */
79
80 /* Byte for one listing line */
81 #define MIN_LIST_BYTES  4
82 #define MAX_LIST_BYTES  255
83
84
85
86 /*****************************************************************************/
87 /*                                   Code                                    */
88 /*****************************************************************************/
89
90
91
92 void NewListingLine (const char* Line, unsigned char File, unsigned char Depth);
93 /* Create a new ListLine struct */
94
95 void EnableListing (void);
96 /* Enable output of lines to the listing */
97
98 void DisableListing (void);
99 /* Disable output of lines to the listing */
100
101 void SetListBytes (int Bytes);
102 /* Set the maximum number of bytes listed for one line */
103
104 void InitListingLine (void);
105 /* Initialize the current listing line */
106
107 void CreateListing (void);
108 /* Create the listing */
109
110
111
112 /* End of listing.h */
113
114 #endif
115
116
117