mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-27 06:49:22 +00:00
45 lines
1.0 KiB
C
45 lines
1.0 KiB
C
|
// ACME - a crossassembler for producing 6502/65c02/65816 code.
|
||
|
// Copyright (C) 1998-2009 Marco Baye
|
||
|
// Have a look at "acme.c" for further info
|
||
|
//
|
||
|
// Section stuff
|
||
|
#ifndef section_H
|
||
|
#define section_H
|
||
|
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
|
||
|
// "section" structure type definition
|
||
|
struct section_t {
|
||
|
zone_t zone; // current zone value
|
||
|
const char *type; // "Zone", "Subzone" or "Macro"
|
||
|
char *title; // zone title, subzone title or macro title
|
||
|
int allocated; // whether title was malloc()'d
|
||
|
};
|
||
|
|
||
|
|
||
|
// Constants
|
||
|
#define ZONE_GLOBAL 0 // Number of "global zone"
|
||
|
|
||
|
|
||
|
// Variables
|
||
|
|
||
|
// current section structure
|
||
|
extern struct section_t *Section_now;
|
||
|
|
||
|
|
||
|
// Prototypes
|
||
|
|
||
|
// Write given info into given zone structure and activate it
|
||
|
extern void Section_new_zone(struct section_t *, const char *type, char *title, int allocated);
|
||
|
// register pseudo opcodes
|
||
|
extern void Section_init(void);
|
||
|
// Setup outermost section
|
||
|
extern void Section_passinit(void);
|
||
|
// Tidy up: If necessary, release section title.
|
||
|
extern void Section_finalize(struct section_t *section);
|
||
|
|
||
|
|
||
|
#endif
|