mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-11-23 02:33:48 +00:00
e10a35e3e1
command: protoize -c '-m32 -DTARGET_CPU=CPU_6502' -g $(ls *.c | grep -v 68)
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
#ifndef LISTING_H_
|
|
#define LISTING_H_
|
|
|
|
/* TODO: Functions here that have "format" arguments should actually
|
|
* be varargs. In 1984 it probably wasn't standardized, but here in
|
|
* Glorious Future Year 1989 the vprintf function does almost exactly
|
|
* what we want. */
|
|
|
|
void outputListing(void);
|
|
void terminateListingFiles(void);
|
|
void generateListing(void);
|
|
int printMacroLine(int numberOfBytes, int byteAddress, statementKindType kind);
|
|
void readSourceFileLine(int *sourceAddressPtr, int *sourceDepthPtr, char lineBuffer[], FILE *file);
|
|
void readIndexFileLine(statementKindType *statementKindPtr, int *indexAddressPtr, int *indexLineNumberPtr);
|
|
int printListingLine(int numberOfBytes, int byteAddress, char *text, statementKindType kind);
|
|
bool isBlockOpener(statementKindType statementKind);
|
|
bool isBlankStatment(statementKindType statementKind);
|
|
void tabPrint(stringType *text);
|
|
void printNTimes (char aChar, int times);
|
|
void tabIndent(void);
|
|
bool labeledLine(void);
|
|
void addText(char *buffer, char **bufferPtr, char *format, ...);
|
|
void moreTextOptional(char *buffer, char **bufferPtr, char *format, ...);
|
|
void moreText(char *format, ...);
|
|
void moreLabel(char *format, int arg1);
|
|
void startLine(void);
|
|
void endLine(void);
|
|
void flushExpressionString(void);
|
|
void expandExpression(char *toBuffer, char **toBufferPtr);
|
|
void expandNum(char *buffer, char **bufferPtr, int n);
|
|
void flushOperand(int n);
|
|
void expandOperands(int op);
|
|
void expandLabel(void);
|
|
void moreExpression(char *format, ...);
|
|
void startLineMarked(void);
|
|
bool notListable(statementKindType statementKind);
|
|
|
|
#endif
|
|
|
|
|
|
|