1 |
106 |
markom |
/* @(#)tiperr.c 1.26 93/07/30 16:40:38, Srini, AMD */
|
2 |
|
|
/******************************************************************************
|
3 |
|
|
* Copyright 1991 Advanced Micro Devices, Inc.
|
4 |
|
|
*
|
5 |
|
|
* This software is the property of Advanced Micro Devices, Inc (AMD) which
|
6 |
|
|
* specifically grants the user the right to modify, use and distribute this
|
7 |
|
|
* software provided this notice is not removed or altered. All other rights
|
8 |
|
|
* are reserved by AMD.
|
9 |
|
|
*
|
10 |
|
|
* AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS
|
11 |
|
|
* SOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL
|
12 |
|
|
* DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR
|
13 |
|
|
* USE OF THIS SOFTWARE.
|
14 |
|
|
*
|
15 |
|
|
* So that all may benefit from your experience, please report any problems
|
16 |
|
|
* or suggestions about this software to the 29K Technical Support Center at
|
17 |
|
|
* 800-29-29-AMD (800-292-9263) in the USA, or 0800-89-1131 in the UK, or
|
18 |
|
|
* 0031-11-1129 in Japan, toll free. The direct dial number is 512-462-4118.
|
19 |
|
|
*
|
20 |
|
|
* Advanced Micro Devices, Inc.
|
21 |
|
|
* 29K Support Products
|
22 |
|
|
* Mail Stop 573
|
23 |
|
|
* 5900 E. Ben White Blvd.
|
24 |
|
|
* Austin, TX 78741
|
25 |
|
|
* 800-292-9263
|
26 |
|
|
*****************************************************************************
|
27 |
|
|
* Engineer: Srini Subramanian.
|
28 |
|
|
*****************************************************************************
|
29 |
|
|
* This module defines the different TIP Error messages.
|
30 |
|
|
*****************************************************************************
|
31 |
|
|
*/
|
32 |
|
|
char *tip_err[] = {
|
33 |
|
|
/* 0 */ (char *) 0,
|
34 |
|
|
/* TIPNOTIMPLM */ "UDI request not currently implemented by TIP.",
|
35 |
|
|
/* TIPPARSECN */ "Could not parse args for Connect.",
|
36 |
|
|
/* TIPMSGINIT */ "Could not initialize message system.",
|
37 |
|
|
/* TIPCORELOAD */ "Could not load -r rom file.",
|
38 |
|
|
/* TIPGOTARGET */ "Error starting target processor.",
|
39 |
|
|
/* TIPGETERROR */ "Unknown error number.",
|
40 |
|
|
/* TIPSENDCFG */ "Error sending Config message.",
|
41 |
|
|
/* TIPRECVCFG */ "Error receiving Config ack.",
|
42 |
|
|
/* TIPSENDRST */ "Error sending Reset message.",
|
43 |
|
|
/* TIPRECVHLT */ "Error receiving Halt ack.",
|
44 |
|
|
/* TIPINITARGS */ "Could not set up Arg Vector for Init.",
|
45 |
|
|
/* TIPSENDINIT */ "Error sending Init message.",
|
46 |
|
|
/* TIPRECVINIT */ "Error receiving Init ack.",
|
47 |
|
|
/* TIPSENDRD */ "Error sending Read message.",
|
48 |
|
|
/* TIPRECVRD */ "Error receiving Read ack.",
|
49 |
|
|
/* TIPSENDWRT */ "Error sending Write message.",
|
50 |
|
|
/* TIPRECVWRT */ "Error receiving Write ack.",
|
51 |
|
|
/* TIPSENDCPY */ "Error sending Copy message.",
|
52 |
|
|
/* TIPRECVCPY */ "Error receiving Copy ack.",
|
53 |
|
|
/* TIPSENDGO */ "Error sending Go message.",
|
54 |
|
|
/* TIPRECVGO */ "Error receiving Go ack.",
|
55 |
|
|
/* TIPSENDSTP */ "Error sending Step message.",
|
56 |
|
|
/* TIPRECVSTP */ "Error receiving Step ack.",
|
57 |
|
|
/* TIPSENDBRK */ "Error sending Break message.",
|
58 |
|
|
/* TIPRECVBRK */ "Error receiving Break ack.",
|
59 |
|
|
/* TIPSENDSTBP */ "Error sending Set Breakpoint message.",
|
60 |
|
|
/* TIPRECVSTBP */ "Error receiving Set Breakpoint ack.",
|
61 |
|
|
/* TIPSENDQYBP */ "Error sending Query Breakpoint message.",
|
62 |
|
|
/* TIPRECVQYBP */ "Error receiving Query Breakpoint ack.",
|
63 |
|
|
/* TIPSENDRMBP */ "Error sending Remove Breakpoint message.",
|
64 |
|
|
/* TIPRECVRMBP */ "Error receiving Remove Breakpoint ack.",
|
65 |
|
|
/* TIPHIFFAIL */ "Error servicing HIF request.",
|
66 |
|
|
/* TIPTIMEOUT */ "Timed out waiting for target.",
|
67 |
|
|
/* TIPUNXPMSG */ "Unexpected message received.",
|
68 |
|
|
/* TIPINVSPACE */ "Invalid space specified.",
|
69 |
|
|
/* TIPINVBID */ "Incorrect Breakpoint ID specified.",
|
70 |
|
|
/* TIPNOCORE */ "No core file given.",
|
71 |
|
|
/* TIPNOSEND */ "Could not send a message.",
|
72 |
|
|
/* TIPNORECV */ "Could not receive a message.",
|
73 |
|
|
/* TIPMSG2BIG */ "Message size exceeds target message buffer size."
|
74 |
|
|
};
|