- cleaned

git-svn-id: http://moon:8086/svn/mips@80 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
2017-01-14 15:10:39 +00:00
parent 2bc3668020
commit b11c98a70f
4 changed files with 123 additions and 128 deletions
+6 -5
View File
@@ -42,17 +42,18 @@ typedef int (*fp_xcpt_t)(struct xcptcontext * xcp);
sputs(" ");
#define PRINT_REG_CHG(tag_str, reg, chg_tag) \
sputs(tag_str); \
print_word(reg); \
sputs(chg_tag); \
sputs(" ");
#define PRINT_REG_CHG(tag_str, reg, reg_last) \
dbg_puts(tag_str); \
dbg_print_word(reg); \
dbg_puts(reg != reg_last ? "*" : " "); \
dbg_puts(" ");
// Public functions
void xcpt_register(int xcpt_num, fp_xcpt_t fp);
int xcpt_get_type(struct xcptcontext * xcp);
void xcpt_registers_print(struct xcptcontext * xcp);
void xcpt_registers_print_with_change(struct xcptcontext * xcp, struct xcptcontext * xcp_last);
void xcpt_exctype_print(struct xcptcontext * xcp);
#endif // XCPT_H