Subversion Repositories HelenOS

Rev

Rev 2417 | Rev 2465 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2417 Rev 2464
Line 78... Line 78...
78
typedef union {
78
typedef union {
79
    instruction_t   *instr;
79
    instruction_t *instr;
80
    uint32_t         pc;
80
    uint32_t pc;
81
} instruction_union_t;
81
} instruction_union_t;
82
 
82
 
83
 
-
 
84
extern void prefetch_abort(int n, istate_t *istate);
83
extern void prefetch_abort(int n, istate_t *istate);
85
extern void data_abort(int n, istate_t *istate);
84
extern void data_abort(int n, istate_t *istate);
86
 
85
 
87
 
-
 
88
#endif
86
#endif
89
 
87
 
90
/** @}
88
/** @}
91
 */
89
 */
92
 
-