Fix IO memory access .. SB128 driver makes noises in VMWare - CMI is untested (Curren...
[AROS.git] / rom / exec / alert_cpu.c
blob0967fd60bae5d0c726affa4852d31ceabff544a0
1 /*
2 Copyright © 2010, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: CPU context parsing routines. Dummy nonfunctional template.
6 See code in arch/i386/all/exec/alert_cpu.c for working example.
7 Lang: english
8 */
10 #include <string.h>
12 #include "exec_intern.h"
13 #include "exec_util.h"
15 char *FormatCPUContext(char *buffer, struct ExceptionContext *ctx, struct ExecBase *SysBase)
17 char *buf;
19 buf = Alert_AddString(buffer, "Not implemented");
20 *buf = 0;
22 return buf;
25 /* Unwind a single stack frame */
26 APTR UnwindFrame(APTR fp, APTR *caller)
28 return NULL;