gbdk-releases/sdcc/device/include/reg51.h
2015-01-10 16:25:09 +01:00

159 lines
3.5 KiB
C

/*-------------------------------------------------------------------------
Register Declarations for 8051 Processor
Written By - Sandeep Dutta . sandeep.dutta@usa.net (1998)
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
In other words, you are welcome to use, share and improve this program.
You are forbidden to forbid anyone else to use, share and improve
what you give them. Help stamp out software-hoarding!
-------------------------------------------------------------------------*/
#ifndef REG51_H
#define REG51_H
#warning This file (reg51.h) is obsolete, depending on your harware
#warning use include <8051.h>, or include <8052.h>!
/* BYTE Register */
sfr at 0x80 P0 ;
sfr at 0x90 P1 ;
sfr at 0xA0 P2 ;
sfr at 0xB0 P3 ;
sfr at 0xD0 PSW ;
sfr at 0xE0 ACC ;
sfr at 0xF0 B ;
sfr at 0x81 SP ;
sfr at 0x82 DPL ;
sfr at 0x83 DPH ;
sfr at 0x87 PCON ;
sfr at 0x88 TCON ;
sfr at 0x89 TMOD ;
sfr at 0x8A TL0 ;
sfr at 0x8B TL1 ;
sfr at 0x8C TH0 ;
sfr at 0x8D TH1 ;
sfr at 0x8E AUXR ;
sfr at 0xA8 IE ;
sfr at 0xB8 IP ;
sfr at 0x98 SCON ;
sfr at 0x99 SBUF ;
/* BIT Register */
/* PSW */
sbit at 0xD7 CY ;
sbit at 0xD6 AC ;
sbit at 0xD5 F0 ;
sbit at 0xD4 RS1 ;
sbit at 0xD3 RS0 ;
sbit at 0xD2 OV ;
sbit at 0xD0 P ;
/* TCON */
sbit at 0x8F TF1 ;
sbit at 0x8E TR1 ;
sbit at 0x8D TF0 ;
sbit at 0x8C TR0 ;
sbit at 0x8B IE1 ;
sbit at 0x8A IT1 ;
sbit at 0x89 IE0 ;
sbit at 0x88 IT0 ;
/* IE */
sbit at 0xAF EA ;
sbit at 0xAC ES ;
sbit at 0xAB ET1 ;
sbit at 0xAA EX1 ;
sbit at 0xA9 ET0 ;
sbit at 0xA8 EX0 ;
/* IP */
sbit at 0xBC PS ;
sbit at 0xBB PT1 ;
sbit at 0xBA PX1 ;
sbit at 0xB9 PT0 ;
sbit at 0xB8 PX0 ;
/* P3 */
sbit at 0xB7 RD ;
sbit at 0xB6 WR ;
sbit at 0xB5 T1 ;
sbit at 0xB4 T0 ;
sbit at 0xB3 INT1 ;
sbit at 0xB2 INT0 ;
sbit at 0xB1 TXD ;
sbit at 0xB0 RXD ;
/* P1 */
sbit at 0x90 P1_0 ;
sbit at 0x91 P1_1 ;
sbit at 0x92 P1_2 ;
sbit at 0x93 P1_3 ;
sbit at 0x94 P1_4 ;
sbit at 0x95 P1_5 ;
sbit at 0x96 P1_6 ;
sbit at 0x97 P1_7 ;
/* SCON */
sbit at 0x9F SM0 ;
sbit at 0x9E SM1 ;
sbit at 0x9D SM2 ;
sbit at 0x9C REN ;
sbit at 0x9B TB8 ;
sbit at 0x9A RB8 ;
sbit at 0x99 TI ;
sbit at 0x98 RI ;
/* TMOD bits */
#define GATE1 (1<<7)
#define C_T1 (1<<6)
#define M1_1 (1<<5)
#define M0_1 (1<<4)
#define GATE0 (1<<3)
#define C_T0 (1<<2)
#define M1_0 (1<<1)
#define M0_0 (1<<0)
/* T2CON */
sfr at 0xC8 T2CON ;
/* T2CON bits */
sbit at 0xC8 T2CON_0 ;
sbit at 0xC9 T2CON_1 ;
sbit at 0xCA T2CON_2 ;
sbit at 0xCB T2CON_3 ;
sbit at 0xCC T2CON_4 ;
sbit at 0xCD T2CON_5 ;
sbit at 0xCE T2CON_6 ;
sbit at 0xCF T2CON_7 ;
/* RCAP2 L & H */
sfr at 0xCB RCAP2H;
sfr at 0xCA RCAP2L;
#endif