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 / memspcs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-23  |  2.6 KB  |  57 lines

  1. /* @(#)memspcs.h    5.18 93/07/30 16:39:58, 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 header file describes the memory spaces in the
  30.  **       AM29000 family of processors.
  31.  *****************************************************************************
  32.  */
  33.  
  34. #ifndef    _MEMSPCS_H_INCLUDED_
  35. #define    _MEMSPCS_H_INCLUDED_
  36.  
  37. #define LOCAL_REG    0  /* Local processor register     */
  38. #define GLOBAL_REG   1  /* Global processor register    */
  39. #define SPECIAL_REG  2  /* Special processor register   */
  40. #define TLB_REG      3  /* Translation Lookaside Buffer */
  41. #define COPROC_REG   4  /* Coprocessor register         */
  42. #define I_MEM        5  /* Instruction Memory           */
  43. #define D_MEM        6  /* Data Memory                  */
  44. #define I_ROM        7  /* Instruction ROM              */
  45. #define D_ROM        8  /* Data ROM                     */
  46. #define I_O          9  /* Input/Output                 */
  47. #define I_CACHE     10  /* Instruction Cache            */
  48. #define D_CACHE     11  /* Data Cache                   */
  49. #define    PC_SPACE    12 /* 29K PC0, PC1 space */
  50. #define    A_SPCL_REG  13 /* Applications view of cps/ops */
  51. #define    ABSOLUTE_REG     14 /* Absolute register number */
  52. #define    PC_RELATIVE    15    /* PC relative offsets */
  53.  
  54. #define    VERSION_SPACE    -1    /* to get target version numbers */
  55. #define    GENERIC_SPACE    0xfe
  56. #endif /* _MEMSPCS_H_INCLUDED_ */
  57.