Subversion Repositories pentevo

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1186 savelij 1
		ifndef  stddef5xinc     ; avoid multiple inclusion
2
stddef5xinc     equ     1
3
 
4
		save
5
		listing off		; no listing over this file
6
 
7
;****************************************************************************
8
;*                                                                          *
9
;*   AS 1.42 - File STDDEF2X.INC                                            *
10
;*   								            *
11
;*   Contains Global Register Definitions for TMS320C5x Processors          *                                           *
12
;*                                                                          *
13
;****************************************************************************
14
 
15
                if      (MOMCPU<>3279952) && (MOMCPU<>3279953) && (MOMCPU<>3279955)
16
		 fatal  "wrong target selected: only 320C50, 320C51 und 320C53 supported"
17
		endif
18
 
19
                if      MOMPASS=1
20
		 message "TMS320C5x Register Definitions (C) 1995 Thomas Sailer"
21
		endif
22
 
23
;----------------------------------------------------------------------------
24
		segment	data
25
 
26
		org	4
27
                ;Core Processor Memory Mapped Registers
28
IMR             res     1
29
GREG            res     1
30
IFR             res     1
31
PMST            res     1
32
RPTC            res     1
33
BRCR            res     1
34
PASR            res     1
35
PAER            res     1
36
TREG0           res     1
37
TREG1           res     1
38
TREG2           res     1
39
DBMR            res     1
40
AR0             res     1
41
AR1             res     1
42
AR2             res     1
43
AR3             res     1
44
AR4             res     1
45
AR5             res     1
46
AR6             res     1
47
AR7             res     1
48
INDX            res     1
49
ARCR            res     1
50
CBSR1           res     1
51
CBER1           res     1
52
CBSR2           res     1
53
CBER2           res     1
54
CBCR            res     1
55
BMAR            res     1
56
 
57
                org     32
58
                ;Peripherial memory mapped registers
59
DRR		res	1
60
DXR		res	1
61
SPC             res     1
62
 
63
                org     36
64
TIM             res     1
65
PRD             res     1
66
TCR             res     1
67
 
68
                org     40
69
PDWSR           res     1
70
IOWSR           res     1
71
CWSR            res     1
72
 
73
                org     48
74
TRCV            res     1
75
TDXR            res     1
76
TSPC            res     1
77
TCSR            res     1
78
TRTA            res     1
79
TRAD            res     1
80
 
81
                org     80
82
PA0             res     1
83
PA1             res     1
84
PA2             res     1
85
PA3             res     1
86
PA4             res     1
87
PA5             res     1
88
PA6             res     1
89
PA7             res     1
90
PA8             res     1
91
PA9             res     1
92
PA10            res     1
93
PA11            res     1
94
PA12            res     1
95
PA13            res     1
96
PA14            res     1
97
PA15            res     1
98
 
99
 
100
;---------------------------------------------------------------------------
101
 
102
                restore                 ; allow listing again
103
 
104
                endif			; stddef5xinc
105