- cleaned
git-svn-id: http://moon:8086/svn/mips@80 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
+6
-5
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user