mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-11-23 02:33:48 +00:00
15 lines
452 B
C
15 lines
452 B
C
#ifndef DEBUG_PRINT_H_
|
|
#define DEBUG_PRINT_H_
|
|
|
|
#include "slinkyTypes.h"
|
|
|
|
void printCode(int startAddress, int endAddress, int mode);
|
|
void printReference(expressionReferenceType *reference);
|
|
void printReferenceFixup(expressionReferenceType *reference);
|
|
void printSymbol(int symbolTag, symbolType *symbol);
|
|
void printLoadMapSymbol(symbolType *symbol);
|
|
void printGlobalSymbols(void);
|
|
void printExpression(expressionPCType expression, int length);
|
|
|
|
#endif
|