git-svn-id: svn://svn.cc65.org/cc65/trunk@338 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-09-24 20:54:49 +00:00
parent 16bc247cbf
commit 42fb5661f1
14 changed files with 549 additions and 98 deletions

View File

@@ -70,9 +70,18 @@ void DefLabel (const char* Name);
void OneDataByte (void);
/* Output a .byte line with the current code byte */
void DataByteLine (unsigned Count);
/* Output a line with Count data bytes */
void DataWordLine (unsigned Count);
/* Output a line with Count data words */
void SeparatorLine (void);
/* Print a separator line */
void LineComment (unsigned PC, unsigned Count);
/* Add a line comment with the PC and data bytes */
/* End of output.h */