12345678910111213141516171819 |
- /*
- * Andrea Di Biagio
- * Politecnico di Milano, 2007
- *
- * asm_debug.h
- * Formal Languages & Compilers Machine, 2007/2008
- *
- */
- #ifndef _ASM_DEBUG_H
- #define _ASM_DEBUG_H
- #include "asm_constants.h"
- extern char * dataType_toString(int dataType);
- extern char * dataFormat_toString(int dataFormat);
- extern char * opcode_toString(int opcode);
- #endif
|