home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / utils / amd-udi / include / serial.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-23  |  3.6 KB  |  100 lines

  1. /* @(#)serial.h    5.18 93/07/30 16:40:14, 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 file contains the declarations of the various target dependent
  30.  * functions used by the Message System of Minimon's TIP to communicate
  31.  * with the target.
  32.  *****************************************************************************
  33.  */
  34.  
  35. #include "messages.h"
  36.  
  37. int   init_comm_serial PARAMS(());
  38. int   msg_send_serial PARAMS((union msg_t *));
  39. int   msg_recv_serial PARAMS((union msg_t *));
  40. int   reset_comm_serial PARAMS(());
  41. int    read_memory_serial PARAMS(());
  42. int    write_memory_serial PARAMS(());
  43. int    fill_memory_serial PARAMS(());
  44. void  go_serial PARAMS(());
  45.  
  46. int   init_comm_pceb PARAMS(());
  47. int   msg_send_pceb PARAMS((union msg_t *));
  48. int   msg_recv_pceb PARAMS((union msg_t *));
  49. int   reset_comm_pceb PARAMS(());
  50. int    read_memory_pceb PARAMS(());
  51. int    write_memory_pceb PARAMS(());
  52. int    fill_memory_pceb PARAMS(());
  53. void  go_pceb PARAMS(());
  54.  
  55. int   init_comm_eb29k PARAMS(());
  56. int   msg_send_eb29k PARAMS((union msg_t *));
  57. int   msg_recv_eb29k PARAMS((union msg_t *));
  58. int   reset_comm_eb29k PARAMS(());
  59. int    read_memory_eb29k PARAMS(());
  60. int    write_memory_eb29k PARAMS(());
  61. int    fill_memory_eb29k PARAMS(());
  62. void  go_eb29k PARAMS(());
  63.  
  64. int   init_comm_lcb29k PARAMS(());
  65. int   msg_send_lcb29k PARAMS((union msg_t *));
  66. int   msg_recv_lcb29k PARAMS((union msg_t *));
  67. int   reset_comm_lcb29k PARAMS(());
  68. int    read_memory_lcb29k PARAMS(());
  69. int    write_memory_lcb29k PARAMS(());
  70. int    fill_memory_lcb29k PARAMS(());
  71. void  go_lcb29k PARAMS(());
  72.  
  73. int    init_comm_iss PARAMS(());
  74. int    reset_comm_iss PARAMS(());
  75. int    msg_send_iss PARAMS((union msg_t *));
  76. int    msg_recv_iss PARAMS((union msg_t *));
  77. int    read_memory_iss PARAMS(());
  78. int    write_memory_iss PARAMS(());
  79. int    fill_memory_iss PARAMS(());
  80. void    go_iss PARAMS((int));
  81.  
  82. int   init_comm_custom PARAMS(());
  83. int   msg_send_custom PARAMS((union msg_t *));
  84. int   msg_recv_custom PARAMS((union msg_t *));
  85. int   reset_comm_custom PARAMS(());
  86. int    read_memory_custom PARAMS(());
  87. int    write_memory_custom PARAMS(());
  88. int    fill_memory_custom PARAMS(());
  89. void  go_custom PARAMS(());
  90.  
  91. int   init_comm_eb030 PARAMS(());
  92. int   msg_send_eb030 PARAMS((union msg_t *));
  93. int   msg_recv_eb030 PARAMS((union msg_t *));
  94. int   reset_comm_eb030 PARAMS(());
  95. int    read_memory_eb030 PARAMS(());
  96. int    write_memory_eb030 PARAMS(());
  97. int    fill_memory_eb030 PARAMS(());
  98. void  go_eb030 PARAMS(());
  99.  
  100.