git-svn-id: svn://svn.cc65.org/cc65/trunk@2143 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-05-04 21:51:13 +00:00
parent 9330f3dc6a
commit e9f6a0a3ab
9 changed files with 812 additions and 609 deletions

View File

@@ -37,7 +37,7 @@
#define SCANNER_H
/* common */
#include "attrib.h"
@@ -66,8 +66,13 @@ typedef enum {
CFGTOK_EOF,
/* Primary blocks */
CFGTOK_CPU,
CFGTOK_MEMORY,
/* CPU block */
CFGTOK_TYPE,
CFGTOK_ADDRSPACE,
/* Special identifiers */
CFGTOK_TRUE,
CFGTOK_FALSE
@@ -122,6 +127,9 @@ void CfgConsumeSemi (void);
void CfgConsumeColon (void);
/* Consume a colon */
void CfgConsumeRCurly (void);
/* Consume a right curly brace */
void CfgOptionalComma (void);
/* Consume a comma if there is one */