diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-18 00:31:54 +0200 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-18 00:31:54 +0200 |
| commit | 268a53de823a6750d6256ee1fb1e7707b4b45740 (patch) | |
| tree | 42c1799a9a82b2f7d9790ee9fe181d72a7274751 /device/include/hc08 | |
| download | sdcc-gas-268a53de823a6750d6256ee1fb1e7707b4b45740.tar.gz | |
sdcc-3.9.0 fork implementing GNU assembler syntax
This fork aims to provide better support for stm8-binutils
Diffstat (limited to 'device/include/hc08')
| -rw-r--r-- | device/include/hc08/mc68hc908apxx.h | 650 | ||||
| -rw-r--r-- | device/include/hc08/mc68hc908gp32.h | 550 | ||||
| -rw-r--r-- | device/include/hc08/mc68hc908jb8.h | 414 | ||||
| -rw-r--r-- | device/include/hc08/mc68hc908jkjl.h | 408 | ||||
| -rw-r--r-- | device/include/hc08/mc68hc908qy.h | 261 |
5 files changed, 2283 insertions, 0 deletions
diff --git a/device/include/hc08/mc68hc908apxx.h b/device/include/hc08/mc68hc908apxx.h new file mode 100644 index 0000000..6f3ac10 --- /dev/null +++ b/device/include/hc08/mc68hc908apxx.h @@ -0,0 +1,650 @@ +/*------------------------------------------------------------------------- + mc68hc908apxx.h - register declarations for Motorola MC68HC908AP16/32/64 + + Copyright (C) 2004, Lucas Loizaga <lucas.loizaga AT ingenieria-inversa.com.ar> + + Based on mc68hc908gp32.h, + Written By - Juan Gonzalez <juan AT iearobotics.com> + + This library 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 library 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 library; see the file COPYING. If not, write to the + Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, + MA 02110-1301, USA. + + As a special exception, if you link this library with other files, + some of which are compiled with SDCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License. This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. +-------------------------------------------------------------------------*/ + +#ifndef MC68HC908APXX_H +#define MC68HC908APXX_H + +#ifndef _UINT8 + #define _UINT8 unsigned char +#endif +#ifndef _UINT16 + #define _UINT16 unsigned int +#endif +#ifndef _VOLDATA + #define _VOLDATA volatile __data +#endif +#ifndef _VOLXDATA + #define _VOLXDATA volatile __xdata +#endif + +struct __hc08_bits +{ + unsigned int bit0:1; + unsigned int bit1:1; + unsigned int bit2:1; + unsigned int bit3:1; + unsigned int bit4:1; + unsigned int bit5:1; + unsigned int bit6:1; + unsigned int bit7:1; +}; + + +_VOLDATA _UINT8 __at 0x00 PTA; /* Port A Data Register */ +#define PORTA PTA /* Alias for PTA */ + #define PTA0 ((struct __hc08_bits *)(&PTA))->bit0 + #define PTA1 ((struct __hc08_bits *)(&PTA))->bit1 + #define PTA2 ((struct __hc08_bits *)(&PTA))->bit2 + #define PTA3 ((struct __hc08_bits *)(&PTA))->bit3 + #define PTA4 ((struct __hc08_bits *)(&PTA))->bit4 + #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5 + #define PTA6 ((struct __hc08_bits *)(&PTA))->bit6 + #define PTA7 ((struct __hc08_bits *)(&PTA))->bit7 + +_VOLDATA _UINT8 __at 0x01 PTB; /* Port B Data Register */ +#define PORTB PTB /* Alias for PTB */ + #define PTB0 ((struct __hc08_bits *)(&PTB))->bit0 + #define PTB1 ((struct __hc08_bits *)(&PTB))->bit1 + #define PTB2 ((struct __hc08_bits *)(&PTB))->bit2 + #define PTB3 ((struct __hc08_bits *)(&PTB))->bit3 + #define PTB4 ((struct __hc08_bits *)(&PTB))->bit4 + #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5 + #define PTB6 ((struct __hc08_bits *)(&PTB))->bit6 + #define PTB7 ((struct __hc08_bits *)(&PTB))->bit7 + +_VOLDATA _UINT8 __at 0x02 PTC; /* Port C Data Register */ +#define PORTC PTC /* Alias for PTC */ + #define PTC0 ((struct __hc08_bits *)(&PTC))->bit0 + #define PTC1 ((struct __hc08_bits *)(&PTC))->bit1 + #define PTC2 ((struct __hc08_bits *)(&PTC))->bit2 + #define PTC3 ((struct __hc08_bits *)(&PTC))->bit3 + #define PTC4 ((struct __hc08_bits *)(&PTC))->bit4 + #define PTC5 ((struct __hc08_bits *)(&PTC))->bit5 + #define PTC6 ((struct __hc08_bits *)(&PTC))->bit6 + #define PTC7 ((struct __hc08_bits *)(&PTC))->bit7 + +_VOLDATA _UINT8 __at 0x03 PTD; /* Port D Data Register */ +#define PORTD PTD /* Alias for PTD */ + #define PTD0 ((struct __hc08_bits *)(&PTD))->bit0 + #define PTD1 ((struct __hc08_bits *)(&PTD))->bit1 + #define PTD2 ((struct __hc08_bits *)(&PTD))->bit2 + #define PTD3 ((struct __hc08_bits *)(&PTD))->bit3 + #define PTD4 ((struct __hc08_bits *)(&PTD))->bit4 + #define PTD5 ((struct __hc08_bits *)(&PTD))->bit5 + #define PTD6 ((struct __hc08_bits *)(&PTD))->bit6 + #define PTD7 ((struct __hc08_bits *)(&PTD))->bit7 + +_VOLDATA _UINT8 __at 0x04 DDRA; /* Data Direction Register A */ + #define DDRA0 ((struct __hc08_bits *)(&DDRA))->bit0 + #define DDRA1 ((struct __hc08_bits *)(&DDRA))->bit1 + #define DDRA2 ((struct __hc08_bits *)(&DDRA))->bit2 + #define DDRA3 ((struct __hc08_bits *)(&DDRA))->bit3 + #define DDRA4 ((struct __hc08_bits *)(&DDRA))->bit4 + #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5 + #define DDRA6 ((struct __hc08_bits *)(&DDRA))->bit6 + #define DDRA7 ((struct __hc08_bits *)(&DDRA))->bit7 + +_VOLDATA _UINT8 __at 0x05 DDRB; /* Data Direction Register B */ + #define DDRB0 ((struct __hc08_bits *)(&DDRB))->bit0 + #define DDRB1 ((struct __hc08_bits *)(&DDRB))->bit1 + #define DDRB2 ((struct __hc08_bits *)(&DDRB))->bit2 + #define DDRB3 ((struct __hc08_bits *)(&DDRB))->bit3 + #define DDRB4 ((struct __hc08_bits *)(&DDRB))->bit4 + #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5 + #define DDRB6 ((struct __hc08_bits *)(&DDRB))->bit6 + #define DDRB7 ((struct __hc08_bits *)(&DDRB))->bit7 + +_VOLDATA _UINT8 __at 0x06 DDRC; /* Data Direction Register C */ + #define DDRC0 ((struct __hc08_bits *)(&DDRC))->bit0 + #define DDRC1 ((struct __hc08_bits *)(&DDRC))->bit1 + #define DDRC2 ((struct __hc08_bits *)(&DDRC))->bit2 + #define DDRC3 ((struct __hc08_bits *)(&DDRC))->bit3 + #define DDRC4 ((struct __hc08_bits *)(&DDRC))->bit4 + #define DDRC5 ((struct __hc08_bits *)(&DDRC))->bit5 + #define DDRC6 ((struct __hc08_bits *)(&DDRC))->bit6 + #define DDRC7 ((struct __hc08_bits *)(&DDRC))->bit7 + +_VOLDATA _UINT8 __at 0x07 DDRD; /* Data Direction Register D */ + #define DDRD0 ((struct __hc08_bits *)(&DDRD))->bit0 + #define DDRD1 ((struct __hc08_bits *)(&DDRD))->bit1 + #define DDRD2 ((struct __hc08_bits *)(&DDRD))->bit2 + #define DDRD3 ((struct __hc08_bits *)(&DDRD))->bit3 + #define DDRD4 ((struct __hc08_bits *)(&DDRD))->bit4 + #define DDRD5 ((struct __hc08_bits *)(&DDRD))->bit5 + #define DDRD6 ((struct __hc08_bits *)(&DDRD))->bit6 + #define DDRD7 ((struct __hc08_bits *)(&DDRD))->bit7 + +_VOLDATA _UINT8 __at 0x0C LEDA; /* PORTA Led Control Register */ + #define LEDA0 ((struct __hc08_bits *)(&LEDA))->bit0 + #define LEDA1 ((struct __hc08_bits *)(&LEDA))->bit1 + #define LEDA2 ((struct __hc08_bits *)(&LEDA))->bit2 + #define LEDA3 ((struct __hc08_bits *)(&LEDA))->bit3 + #define LEDA4 ((struct __hc08_bits *)(&LEDA))->bit4 + #define LEDA5 ((struct __hc08_bits *)(&LEDA))->bit5 + #define LEDA6 ((struct __hc08_bits *)(&LEDA))->bit6 + #define LEDA7 ((struct __hc08_bits *)(&LEDA))->bit7 + +_VOLDATA _UINT8 __at 0x10 SPCR; /* SPI Control Register */ + #define SPRIE ((struct __hc08_bits *)(&SPCR))->bit7 + #define DMAS ((struct __hc08_bits *)(&SPCR))->bit6 + #define SPMSTR ((struct __hc08_bits *)(&SPCR))->bit5 + #define CPOL ((struct __hc08_bits *)(&SPCR))->bit4 + #define CPHA ((struct __hc08_bits *)(&SPCR))->bit3 + #define SPWOM ((struct __hc08_bits *)(&SPCR))->bit2 + #define SPE ((struct __hc08_bits *)(&SPCR))->bit1 + #define SPTIE ((struct __hc08_bits *)(&SPCR))->bit0 + +_VOLDATA _UINT8 __at 0x11 SPSCR; /* SPI Status and Control Register */ + #define SPRF ((struct __hc08_bits *)(&SPSCR))->bit7 + #define ERRIE ((struct __hc08_bits *)(&SPSCR))->bit6 + #define OVRF ((struct __hc08_bits *)(&SPSCR))->bit5 + #define MODF ((struct __hc08_bits *)(&SPSCR))->bit4 + #define SPTE ((struct __hc08_bits *)(&SPSCR))->bit3 + #define MODFEN ((struct __hc08_bits *)(&SPSCR))->bit2 + #define SPR1 ((struct __hc08_bits *)(&SPSCR))->bit1 + #define SPR0 ((struct __hc08_bits *)(&SPSCR))->bit0 + +_VOLDATA _UINT8 __at 0x12 SPDR; /* SPI Data Register */ + + +_VOLDATA _UINT8 __at 0x13 SCC1; /* SCI Control Register 1 */ + #define LOOPS ((struct __hc08_bits *)(&SCC1))->bit7 + #define ENSCI ((struct __hc08_bits *)(&SCC1))->bit6 + #define TXINV ((struct __hc08_bits *)(&SCC1))->bit5 + #define M ((struct __hc08_bits *)(&SCC1))->bit4 + #define WAKE ((struct __hc08_bits *)(&SCC1))->bit3 + #define ILTY ((struct __hc08_bits *)(&SCC1))->bit2 + #define PEN ((struct __hc08_bits *)(&SCC1))->bit1 + #define PTY ((struct __hc08_bits *)(&SCC1))->bit0 + + +_VOLDATA _UINT8 __at 0x14 SCC2; /* SCI Control Register 2 */ + #define SCTIE ((struct __hc08_bits *)(&SCC2))->bit7 + #define TCIE ((struct __hc08_bits *)(&SCC2))->bit6 + #define SCRIE ((struct __hc08_bits *)(&SCC2))->bit5 + #define ILIE ((struct __hc08_bits *)(&SCC2))->bit4 + #define TE ((struct __hc08_bits *)(&SCC2))->bit3 + #define RE ((struct __hc08_bits *)(&SCC2))->bit2 + #define WRU ((struct __hc08_bits *)(&SCC2))->bit1 + #define SBK ((struct __hc08_bits *)(&SCC2))->bit0 + +_VOLDATA _UINT8 __at 0x15 SCC3; /* SCI Control Register 3 */ + #define SCC3_R8 ((struct __hc08_bits *)(&SCC3))->bit7 + #define SCC3_T8 ((struct __hc08_bits *)(&SCC3))->bit6 + #define DMARE ((struct __hc08_bits *)(&SCC3))->bit5 + #define DMATE ((struct __hc08_bits *)(&SCC3))->bit4 + #define ORIE ((struct __hc08_bits *)(&SCC3))->bit3 + #define NEIE ((struct __hc08_bits *)(&SCC3))->bit2 + #define FEIE ((struct __hc08_bits *)(&SCC3))->bit1 + #define PEIE ((struct __hc08_bits *)(&SCC3))->bit0 + +_VOLDATA _UINT8 __at 0x16 SCS1; /* SCI Status Register 1 */ + #define SCTE ((struct __hc08_bits *)(&SCS1))->bit7 + #define TC ((struct __hc08_bits *)(&SCS1))->bit6 + #define SCRF ((struct __hc08_bits *)(&SCS1))->bit5 + #define IDLE ((struct __hc08_bits *)(&SCS1))->bit4 + #define OR ((struct __hc08_bits *)(&SCS1))->bit3 + #define NF ((struct __hc08_bits *)(&SCS1))->bit2 + #define FE ((struct __hc08_bits *)(&SCS1))->bit1 + #define PE ((struct __hc08_bits *)(&SCS1))->bit0 + +_VOLDATA _UINT8 __at 0x17 SCS2; /* SCI Status Register 2 */ + #define RPF ((struct __hc08_bits *)(&SCS2))->bit0 + #define BKF ((struct __hc08_bits *)(&SCS2))->bit1 + /* Bits 2-7 not implemented */ + +_VOLDATA _UINT8 __at 0x18 SCDR; /* SCI Data Register */ + +_VOLDATA _UINT8 __at 0x19 SCBR; /* SCI Baud Rate Register */ + #define SCP1 ((struct __hc08_bits *)(&SCBR))->bit5 + #define SCP0 ((struct __hc08_bits *)(&SCBR))->bit4 + #define R ((struct __hc08_bits *)(&SCBR))->bit3 + #define SCR2 ((struct __hc08_bits *)(&SCBR))->bit2 + #define SCR1 ((struct __hc08_bits *)(&SCBR))->bit1 + #define SCR0 ((struct __hc08_bits *)(&SCBR))->bit0 + /*-- Bits 6 and 7 do not exist */ + +_VOLDATA _UINT8 __at 0x1a INTKBSCR; /* Keyboard Status and Control Register */ + #define KEYF ((struct __hc08_bits *)(&INTKBSCR))->bit3 + #define ACKK ((struct __hc08_bits *)(&INTKBSCR))->bit2 + #define IMASKK ((struct __hc08_bits *)(&INTKBSCR))->bit1 + #define MODEK ((struct __hc08_bits *)(&INTKBSCR))->bit0 + /*-- Bits 4-7 do not exist */ + +_VOLDATA _UINT8 __at 0x1b INTKBIER; /* Keyboard Interrupt Enable Register */ + #define KBIE7 ((struct __hc08_bits *)(&INTKBIER))->bit7 + #define KBIE6 ((struct __hc08_bits *)(&INTKBIER))->bit6 + #define KBIE5 ((struct __hc08_bits *)(&INTKBIER))->bit5 + #define KBIE4 ((struct __hc08_bits *)(&INTKBIER))->bit4 + #define KBIE3 ((struct __hc08_bits *)(&INTKBIER))->bit3 + #define KBIE2 ((struct __hc08_bits *)(&INTKBIER))->bit2 + #define KBIE1 ((struct __hc08_bits *)(&INTKBIER))->bit1 + #define KBIE0 ((struct __hc08_bits *)(&INTKBIER))->bit0 + +_VOLDATA _UINT8 __at 0x1C INTSCR2; /* Keyboard Status and Control Register */ + #define PUC0ENB ((struct __hc08_bits *)(&INTSCR2))->bit6 + #define IRQF2 ((struct __hc08_bits *)(&INTSCR2))->bit3 + #define ACK2 ((struct __hc08_bits *)(&INTSCR2))->bit2 + #define IMASK2 ((struct __hc08_bits *)(&INTSCR2))->bit1 + #define MODE2 ((struct __hc08_bits *)(&INTSCR2))->bit0 + +_VOLDATA _UINT8 __at 0x1D CONFIG2; /* Configuration Register 2 */ +/* CONFIG2 is one-time writeble, so can't use bitfields */ + + +_VOLDATA _UINT8 __at 0x1E INTSCR1; /* IRQ status/control */ + #define IRQF1 ((struct __hc08_bits *)(&INTSCR1))->bit3 + #define ACK1 ((struct __hc08_bits *)(&INTSCR1))->bit2 + #define IMASK1 ((struct __hc08_bits *)(&INTSCR1))->bit1 + #define MODE1 ((struct __hc08_bits *)(&INTSCR1))->bit0 + /* Bits 4-7 unimplemented */ + +_VOLDATA _UINT8 __at 0x1f CONFIG1; /* Configuration Register 1 */ +/* CONFIG1 is one-time writeable, so can't use bitfields */ + +_VOLDATA _UINT8 __at 0x20 T1SC; /* TIM 1 Status and Control */ + #define PS0 ((struct __hc08_bits *)(&T1SC))->bit0 + #define PS1 ((struct __hc08_bits *)(&T1SC))->bit1 + #define PS2 ((struct __hc08_bits *)(&T1SC))->bit2 + #define TRST ((struct __hc08_bits *)(&T1SC))->bit4 + #define TSTOP ((struct __hc08_bits *)(&T1SC))->bit5 + #define TOIE ((struct __hc08_bits *)(&T1SC))->bit6 + #define TOF ((struct __hc08_bits *)(&T1SC))->bit7 + +_VOLDATA _UINT16 __at 0x21 T1CNT; /* TIM1 Counter High & Low Registers */ +_VOLDATA _UINT8 __at 0x21 T1CNTH; /* TIM1 Counter Register High */ +_VOLDATA _UINT8 __at 0x22 T1CNTL; /* TIM1 Counter Register Low */ + +_VOLDATA _UINT16 __at 0x23 T1MOD; /* TIM1 Counter Modulo High & Low Registers */ +_VOLDATA _UINT8 __at 0x23 T1MODH; /* TIM1 Counter Modulo Register High */ +_VOLDATA _UINT8 __at 0x24 T1MODL; /* TIM1 Counter Modulo Register Low */ + +_VOLDATA _UINT8 __at 0x25 T1SC0; /* TIM1 Channel 0 Status and Control Register */ + #define CH0MAX ((struct __hc08_bits *)(&T1SC0))->bit0 + #define TOV0 ((struct __hc08_bits *)(&T1SC0))->bit1 + #define ELS0A ((struct __hc08_bits *)(&T1SC0))->bit2 + #define ELS0B ((struct __hc08_bits *)(&T1SC0))->bit3 + #define MS0A ((struct __hc08_bits *)(&T1SC0))->bit4 + #define MS0B ((struct __hc08_bits *)(&T1SC0))->bit5 + #define CH0IE ((struct __hc08_bits *)(&T1SC0))->bit6 + #define CH0F ((struct __hc08_bits *)(&T1SC0))->bit7 + +_VOLDATA _UINT16 __at 0x26 T1CH0; /* TIM1 Channel 0 High & Low Registers */ +_VOLDATA _UINT8 __at 0x26 T1CH0H; /* TIM1 Channel 0 Register High */ +_VOLDATA _UINT8 __at 0x27 T1CH0L; /* TIM1 Channel 0 Register Low */ + +_VOLDATA _UINT8 __at 0x28 T1SC1; /* TIM1 Channel 1 Status and Control Register */ + #define CH1MAX ((struct __hc08_bits *)(&T1SC1))->bit0 + #define TOV1 ((struct __hc08_bits *)(&T1SC1))->bit1 + #define ELS1A ((struct __hc08_bits *)(&T1SC1))->bit2 + #define ELS1B ((struct __hc08_bits *)(&T1SC1))->bit3 + #define MS1A ((struct __hc08_bits *)(&T1SC1))->bit4 + #define CH1IE ((struct __hc08_bits *)(&T1SC1))->bit6 + #define CH1F ((struct __hc08_bits *)(&T1SC1))->bit7 + +_VOLDATA _UINT16 __at 0x29 T1CH1; /* TIM1 Channel 1 High & Low Registers */ +_VOLDATA _UINT8 __at 0x29 T1CH1H; /* TIM1 Channel 1 Register High */ +_VOLDATA _UINT8 __at 0x2A T1CH1L; /* TIM1 Channel 1 Register Low */ + +/*------------------*/ +/* TIM 2 REGISTERS */ +/*------------------*/ + +_VOLDATA _UINT8 __at 0x2B T2SC; /* TIM 2 Status and Control */ + #define PS0_2 ((struct __hc08_bits *)(&T2SC))->bit0 + #define PS1_2 ((struct __hc08_bits *)(&T2SC))->bit1 + #define PS2_2 ((struct __hc08_bits *)(&T2SC))->bit2 + #define TRST_2 ((struct __hc08_bits *)(&T2SC))->bit4 + #define TSTOP_2 ((struct __hc08_bits *)(&T2SC))->bit5 + #define TOIE_2 ((struct __hc08_bits *)(&T2SC))->bit6 + #define TOF_2 ((struct __hc08_bits *)(&T2SC))->bit7 + +_VOLDATA _UINT16 __at 0x2C T2CNT; /* TIM2 Counter High & Low Registers */ +_VOLDATA _UINT8 __at 0x2C T2CNTH; /* TIM2 Counter Register High */ +_VOLDATA _UINT8 __at 0x2D T2CNTL; /* TIM2 Counter Register Low */ + +_VOLDATA _UINT16 __at 0x2E T2MOD; /* TIM2 Counter Modulo High & Low Registers */ +_VOLDATA _UINT8 __at 0x2E T2MODH; /* TIM2 Counter Modulo Register High */ +_VOLDATA _UINT8 __at 0x2F T2MODL; /* TIM2 Counter Modulo Register Low */ + +_VOLDATA _UINT8 __at 0x30 T2SC0; /* TIM2 Channel 0 Status and Control Register */ + #define CH0MAX_2 ((struct __hc08_bits *)(&T2SC0))->bit0 + #define TOV0_2 ((struct __hc08_bits *)(&T2SC0))->bit1 + #define ELS0A_2 ((struct __hc08_bits *)(&T2SC0))->bit2 + #define ELS0B_2 ((struct __hc08_bits *)(&T2SC0))->bit3 + #define MS0A_2 ((struct __hc08_bits *)(&T2SC0))->bit4 + #define MS0B_2 ((struct __hc08_bits *)(&T2SC0))->bit5 + #define CH0IE_2 ((struct __hc08_bits *)(&T2SC0))->bit6 + #define CH0F_2 ((struct __hc08_bits *)(&T2SC0))->bit7 + +_VOLDATA _UINT16 __at 0x31 T2CH0; /* TIM2 Channel 0 High & Low Registers */ +_VOLDATA _UINT8 __at 0x31 T2CH0H; /* TIM2 Channel 0 Register High */ +_VOLDATA _UINT8 __at 0x32 T2CH0L; /* TIM2 Channel 0 Register Low */ + +_VOLDATA _UINT8 __at 0x33 T2SC1; /* TIM2 Channel 1 Status and Control Register */ + #define CH1MAX_2 ((struct __hc08_bits *)(&T2SC1))->bit0 + #define TOV1_2 ((struct __hc08_bits *)(&T2SC1))->bit1 + #define ELS1A_2 ((struct __hc08_bits *)(&T2SC1))->bit2 + #define ELS1B_2 ((struct __hc08_bits *)(&T2SC1))->bit3 + #define MS1A_2 ((struct __hc08_bits *)(&T2SC1))->bit4 + #define CH1IE_2 ((struct __hc08_bits *)(&T2SC1))->bit6 + #define CH1F_2 ((struct __hc08_bits *)(&T2SC1))->bit7 + +_VOLDATA _UINT16 __at 0x34 T2CH1; /* TIM2 Channel 1 High & Low Registers */ +_VOLDATA _UINT8 __at 0x34 T2CH1H; /* TIM2 Channel 1 Register High */ +_VOLDATA _UINT8 __at 0x35 T2CH1L; /* TIM2 Channel 1 Register Low */ + +_VOLDATA _UINT8 __at 0x36 PCTL; /* PLL Control Register */ + #define PLLIE ((struct __hc08_bits *)(&PCTL))->bit7 + #define PLLF ((struct __hc08_bits *)(&PCTL))->bit6 + #define PLLON ((struct __hc08_bits *)(&PCTL))->bit5 + #define BCS ((struct __hc08_bits *)(&PCTL))->bit4 + #define PRE1 ((struct __hc08_bits *)(&PCTL))->bit3 + #define PRE0 ((struct __hc08_bits *)(&PCTL))->bit2 + #define VPR1 ((struct __hc08_bits *)(&PCTL))->bit1 + #define VPR0 ((struct __hc08_bits *)(&PCTL))->bit0 + +_VOLDATA _UINT8 __at 0x37 PBWC; /* PLL Bandwidth Control Register */ + #define AUTO ((struct __hc08_bits *)(&PBWC))->bit7 + #define LOCK ((struct __hc08_bits *)(&PBWC))->bit6 + #define ACQ ((struct __hc08_bits *)(&PBWC))->bit5 + /* Bits 1-4, Unimplemented */ + /* Bit 0, Reserved */ + +_VOLDATA _UINT8 __at 0x38 PMSH; /* PLL Multiplier Select High */ + #define MUL11 ((struct __hc08_bits *)(&PMSH))->bit3 + #define MUL10 ((struct __hc08_bits *)(&PMSH))->bit2 + #define MUL9 ((struct __hc08_bits *)(&PMSH))->bit1 + #define MUL8 ((struct __hc08_bits *)(&PMSH))->bit0 + /* Bits 4-7 unimplemented */ + +_VOLDATA _UINT8 __at 0x39 PMSL; /* PLL Multiplir Select Low */ + #define MUL7 ((struct __hc08_bits *)(&PMSL))->bit7 + #define MUL6 ((struct __hc08_bits *)(&PMSL))->bit6 + #define MUL5 ((struct __hc08_bits *)(&PMSL))->bit5 + #define MUL4 ((struct __hc08_bits *)(&PMSL))->bit4 + #define MUL3 ((struct __hc08_bits *)(&PMSL))->bit3 + #define MUL2 ((struct __hc08_bits *)(&PMSL))->bit2 + #define MUL1 ((struct __hc08_bits *)(&PMSL))->bit1 + #define MUL0 ((struct __hc08_bits *)(&PMSL))->bit0 + +_VOLDATA _UINT8 __at 0x3a PMRS; /* PLL VCO Select Range */ + #define VRS7 ((struct __hc08_bits *)(&PMRS))->bit7 + #define VRS6 ((struct __hc08_bits *)(&PMRS))->bit6 + #define VRS5 ((struct __hc08_bits *)(&PMRS))->bit5 + #define VRS4 ((struct __hc08_bits *)(&PMRS))->bit4 + #define VRS3 ((struct __hc08_bits *)(&PMRS))->bit3 + #define VRS2 ((struct __hc08_bits *)(&PMRS))->bit2 + #define VRS1 ((struct __hc08_bits *)(&PMRS))->bit1 + #define VRS0 ((struct __hc08_bits *)(&PMRS))->bit0 + +_VOLDATA _UINT8 __at 0x3b PMDS; /* PLL Reference Divider Select Register */ + #define RDS3 ((struct __hc08_bits *)(&PMDS))->bit3 + #define RDS2 ((struct __hc08_bits *)(&PMDS))->bit2 + #define RDS1 ((struct __hc08_bits *)(&PMDS))->bit1 + #define RDS0 ((struct __hc08_bits *)(&PMDS))->bit0 + /* Bits 4-7 unimplemented */ + + + +_VOLDATA _UINT8 __at 0x40 IRSCC1; /* SCI Control Register 1 */ + #define LOOPS_IR ((struct __hc08_bits *)(&IRSCC1))->bit7 + #define ENSCI_IR ((struct __hc08_bits *)(&IRSCC1))->bit6 + #define TXINV_IR ((struct __hc08_bits *)(&IRSCC1))->bit5 + #define M_IR ((struct __hc08_bits *)(&IRSCC1))->bit4 + #define WAKE_IR ((struct __hc08_bits *)(&IRSCC1))->bit3 + #define ILTY_IR ((struct __hc08_bits *)(&IRSCC1))->bit2 + #define PEN_IR ((struct __hc08_bits *)(&IRSCC1))->bit1 + #define PTY_IR ((struct __hc08_bits *)(&IRSCC1))->bit0 + + +_VOLDATA _UINT8 __at 0x41 IRSCC2; /* SCI Control Register 2 */ + #define SCTIE_IR ((struct __hc08_bits *)(&IRSCC2))->bit7 + #define TCIE_IR ((struct __hc08_bits *)(&IRSCC2))->bit6 + #define SCRIE_IR ((struct __hc08_bits *)(&IRSCC2))->bit5 + #define ILIE_IR ((struct __hc08_bits *)(&IRSCC2))->bit4 + #define TE_IR ((struct __hc08_bits *)(&IRSCC2))->bit3 + #define RE_IR ((struct __hc08_bits *)(&IRSCC2))->bit2 + #define WRU_IR ((struct __hc08_bits *)(&IRSCC2))->bit1 + #define SBK_IR ((struct __hc08_bits *)(&IRSCC2))->bit0 + +_VOLDATA _UINT8 __at 0x42 IRSCC3; /* SCI Control Register 3 */ + #define SCC3_R8_IR ((struct __hc08_bits *)(&IRSCC3))->bit7 + #define SCC3_T8_IR ((struct __hc08_bits *)(&IRSCC3))->bit6 + #define DMARE_IR ((struct __hc08_bits *)(&IRSCC3))->bit5 + #define DMATE_IR ((struct __hc08_bits *)(&IRSCC3))->bit4 + #define ORIE_IR ((struct __hc08_bits *)(&IRSCC3))->bit3 + #define NEIE_IR ((struct __hc08_bits *)(&IRSCC3))->bit2 + #define FEIE_IR ((struct __hc08_bits *)(&IRSCC3))->bit1 + #define PEIE_IR ((struct __hc08_bits *)(&IRSCC3))->bit0 + +_VOLDATA _UINT8 __at 0x43 IRSCS1; /* SCI Status Register 1 */ + #define SCTE_IR ((struct __hc08_bits *)(&IRSCS1))->bit7 + #define TC_IR ((struct __hc08_bits *)(&IRSCS1))->bit6 + #define SCRF_IR ((struct __hc08_bits *)(&IRSCS1))->bit5 + #define IDLE_IR ((struct __hc08_bits *)(&IRSCS1))->bit4 + #define OR_IR ((struct __hc08_bits *)(&IRSCS1))->bit3 + #define NF_IR ((struct __hc08_bits *)(&IRSCS1))->bit2 + #define FE_IR ((struct __hc08_bits *)(&IRSCS1))->bit1 + #define PE_IR ((struct __hc08_bits *)(&IRSCS1))->bit0 + +_VOLDATA _UINT8 __at 0x44 IRSCS2; /* SCI Status Register 2 */ + #define RPF_IR ((struct __hc08_bits *)(&IRSCS2))->bit0 + #define BKF_IR ((struct __hc08_bits *)(&IRSCS2))->bit1 + /* Bits 2-7 not implemented */ + +_VOLDATA _UINT8 __at 0x45 IRSCDR; /* SCI Data Register */ + +_VOLDATA _UINT8 __at 0x46 IRSCBR; /* SCI Baud Rate Register */ + #define CKS_IR ((struct __hc08_bits *)(&IRSCBR))->bit7 + #define SCP1_IR ((struct __hc08_bits *)(&IRSCBR))->bit5 + #define SCP0_IR ((struct __hc08_bits *)(&IRSCBR))->bit4 + #define SCR2_IR ((struct __hc08_bits *)(&IRSCBR))->bit2 + #define SCR1_IR ((struct __hc08_bits *)(&IRSCBR))->bit1 + #define SCR0_IR ((struct __hc08_bits *)(&IRSCBR))->bit0 + +_VOLDATA _UINT8 __at 0x47 IRSCIRCR; /* SCI Baud Rate Register */ + #define TNP1_IR ((struct __hc08_bits *)(&IRSCIRCR))->bit2 + #define TNP0_IR ((struct __hc08_bits *)(&IRSCIRCR))->bit1 + #define IREN_IR ((struct __hc08_bits *)(&IRSCIRCR))->bit0 + + + +_VOLDATA _UINT8 __at 0x48 MMADR; /* MMIIC Address Register. */ + #define MMAD7 ((struct __hc08_bits *)(&MMADR))->bit7 + #define MMAD6 ((struct __hc08_bits *)(&MMADR))->bit6 + #define MMAD5 ((struct __hc08_bits *)(&MMADR))->bit5 + #define MMAD4 ((struct __hc08_bits *)(&MMADR))->bit4 + #define MMAD3 ((struct __hc08_bits *)(&MMADR))->bit3 + #define MMAD2 ((struct __hc08_bits *)(&MMADR))->bit2 + #define MMAD1 ((struct __hc08_bits *)(&MMADR))->bit1 + #define MMEXTAD ((struct __hc08_bits *)(&MMADR))->bit0 + + +_VOLDATA _UINT8 __at 0x49 MMCR1; /* MMIIC Control Register 1. */ + #define MMEN ((struct __hc08_bits *)(&MMCR1))->bit7 + #define MMIEN ((struct __hc08_bits *)(&MMCR1))->bit6 + #define MMCLRBB ((struct __hc08_bits *)(&MMCR1))->bit5 + #define MMTXAK ((struct __hc08_bits *)(&MMCR1))->bit3 + #define REPSEN ((struct __hc08_bits *)(&MMCR1))->bit2 + #define MMCRCBYTE ((struct __hc08_bits *)(&MMCR1))->bit1 + + +_VOLDATA _UINT8 __at 0x4a MMCR2; /* MMIIC Control Register 2. */ + #define MMALIF ((struct __hc08_bits *)(&MMCR2))->bit7 + #define MMNAKIF ((struct __hc08_bits *)(&MMCR2))->bit6 + #define MMBB ((struct __hc08_bits *)(&MMCR2))->bit5 + #define MMAST ((struct __hc08_bits *)(&MMCR2))->bit4 + #define MMRW ((struct __hc08_bits *)(&MMCR2))->bit3 + #define MMCRCEF ((struct __hc08_bits *)(&MMCR2))->bit0 + + +_VOLDATA _UINT8 __at 0x4B MMSR; /* MMIIC Status Register. */ + #define MMRXIF ((struct __hc08_bits *)(&MMSR))->bit7 + #define MMTXIF ((struct __hc08_bits *)(&MMSR))->bit6 + #define MMATCH ((struct __hc08_bits *)(&MMSR))->bit5 + #define MMSRW ((struct __hc08_bits *)(&MMSR))->bit4 + #define MMRXAK ((struct __hc08_bits *)(&MMSR))->bit3 + #define MMCRCBF ((struct __hc08_bits *)(&MMSR))->bit2 + #define MMTXBE ((struct __hc08_bits *)(&MMSR))->bit1 + #define MMRXBF ((struct __hc08_bits *)(&MMSR))->bit0 + +_VOLDATA _UINT8 __at 0x4C MMDTR; /* MMIIC Data Transmit Register */ +_VOLDATA _UINT8 __at 0x4D MMDRR; /* MMIIC Data Receive Register */ +_VOLDATA _UINT8 __at 0x4E MMCRDR; /* MMIIC CRC Data Register */ + + +_VOLDATA _UINT8 __at 0x4F MMFDR; /* MMIIC Frecuency Divider Register */ + #define MMBR2 ((struct __hc08_bits *)(&MMFDR))->bit2 + #define MMBR1 ((struct __hc08_bits *)(&MMFDR))->bit1 + #define MMBR0 ((struct __hc08_bits *)(&MMFDR))->bit0 + + +_VOLDATA _UINT8 __at 0x51 TBCR; /* Time Base Module Control */ + #define TBIF ((struct __hc08_bits *)(&TBCR))->bit7 + #define TBR2 ((struct __hc08_bits *)(&TBCR))->bit6 + #define TBR1 ((struct __hc08_bits *)(&TBCR))->bit5 + #define TBR0 ((struct __hc08_bits *)(&TBCR))->bit4 + #define TACK ((struct __hc08_bits *)(&TBCR))->bit3 + #define TBIE ((struct __hc08_bits *)(&TBCR))->bit2 + #define TBON ((struct __hc08_bits *)(&TBCR))->bit1 + /* Bit 0 Reserved */ + + + +_VOLDATA _UINT8 __at 0x57 ADSCR; /* Analog-to-Digital Status and Control Reg. */ + #define COCO ((struct __hc08_bits *)(&ADSCR))->bit7 + #define AIEN ((struct __hc08_bits *)(&ADSCR))->bit6 + #define ADCO ((struct __hc08_bits *)(&ADSCR))->bit5 + #define ADCH4 ((struct __hc08_bits *)(&ADSCR))->bit4 + #define ADCH3 ((struct __hc08_bits *)(&ADSCR))->bit3 + #define ADCH2 ((struct __hc08_bits *)(&ADSCR))->bit2 + #define ADCH1 ((struct __hc08_bits *)(&ADSCR))->bit1 + #define ADCH0 ((struct __hc08_bits *)(&ADSCR))->bit0 + +_VOLDATA _UINT8 __at 0x58 ADCLK; /* Analog-to-Digital Clock */ + #define ADIV2 ((struct __hc08_bits *)(&ADCLK))->bit7 + #define ADIV1 ((struct __hc08_bits *)(&ADCLK))->bit6 + #define ADIV0 ((struct __hc08_bits *)(&ADCLK))->bit5 + #define ADICLK ((struct __hc08_bits *)(&ADCLK))->bit4 + #define ADMODE1 ((struct __hc08_bits *)(&ADCLK))->bit3 + #define ADMODE0 ((struct __hc08_bits *)(&ADCLK))->bit2 + +_VOLDATA _UINT8 __at 0x59 ADRH0; /* Analog-to-Digital Data Register */ +_VOLDATA _UINT8 __at 0x5a ADRL0; /* Analog-to-Digital Data Register */ +_VOLDATA _UINT8 __at 0x5b ADRL1; /* Analog-to-Digital Data Register */ +_VOLDATA _UINT8 __at 0x5c ADRL2; /* Analog-to-Digital Data Register */ +_VOLDATA _UINT8 __at 0x5d ADRL3; /* Analog-to-Digital Data Register */ + +_VOLDATA _UINT8 __at 0x5e ADASCR; /* ADC Auto Scan Control */ + #define ASCAN ((struct __hc08_bits *)(&ADCLK))->bit0 + #define AUTO0 ((struct __hc08_bits *)(&ADCLK))->bit1 + #define AUTO1 ((struct __hc08_bits *)(&ADCLK))->bit2 + + +_VOLXDATA _UINT8 __at 0xfe00 SBSR; /* SIM Break Status Register */ + #define SBSW ((struct __hc08_bits *)(&SBSR))->bit1 + +_VOLXDATA _UINT8 __at 0xfe01 SRSR; /* SIM Reset Status Register */ + #define LVI ((struct __hc08_bits *)(&SRSR))->bit1 + #define MODRST ((struct __hc08_bits *)(&SRSR))->bit2 + #define ILAD ((struct __hc08_bits *)(&SRSR))->bit3 + #define ILOP ((struct __hc08_bits *)(&SRSR))->bit4 + #define COP ((struct __hc08_bits *)(&SRSR))->bit5 + #define PIN ((struct __hc08_bits *)(&SRSR))->bit6 + #define POR ((struct __hc08_bits *)(&SRSR))->bit7 + /* Bit 0 unimplemented */ + + +_VOLXDATA _UINT8 __at 0xfe03 SBFCR; /* SIM Break Flag Control Register */ + #define BFCE ((struct __hc08_bits *)(&BFCR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe04 INT1; /* Interrupt Status Register 1 */ + #define IF1 ((struct __hc08_bits *)(&INT1))->bit2 + #define IF2 ((struct __hc08_bits *)(&INT1))->bit3 + #define IF3 ((struct __hc08_bits *)(&INT1))->bit4 + #define IF4 ((struct __hc08_bits *)(&INT1))->bit5 + #define IF5 ((struct __hc08_bits *)(&INT1))->bit6 + #define IF6 ((struct __hc08_bits *)(&INT1))->bit7 + /* Bits 0-1 Reserved */ + +_VOLXDATA _UINT8 __at 0xfe05 INT2; /* Interrupt Status Register 2 */ + #define IF14 ((struct __hc08_bits *)(&INT2))->bit7 + #define IF13 ((struct __hc08_bits *)(&INT2))->bit6 + #define IF12 ((struct __hc08_bits *)(&INT2))->bit5 + #define IF11 ((struct __hc08_bits *)(&INT2))->bit4 + #define IF10 ((struct __hc08_bits *)(&INT2))->bit3 + #define IF9 ((struct __hc08_bits *)(&INT2))->bit2 + #define IF8 ((struct __hc08_bits *)(&INT2))->bit1 + #define IF7 ((struct __hc08_bits *)(&INT2))->bit0 + +_VOLXDATA _UINT8 __at 0xfe06 INT3; /* Interrupt Status Register 3 */ + #define IF21 ((struct __hc08_bits *)(&INT3))->bit6 + #define IF20 ((struct __hc08_bits *)(&INT3))->bit5 + #define IF19 ((struct __hc08_bits *)(&INT3))->bit4 + #define IF18 ((struct __hc08_bits *)(&INT3))->bit3 + #define IF17 ((struct __hc08_bits *)(&INT3))->bit2 + #define IF16 ((struct __hc08_bits *)(&INT3))->bit1 + #define IF15 ((struct __hc08_bits *)(&INT3))->bit0 + +_VOLXDATA _UINT8 __at 0xfe08 FLCR; /* FLASH Control Register */ + #define PGM ((struct __hc08_bits *)(&FLCR))->bit0 + #define ERASE ((struct __hc08_bits *)(&FLCR))->bit1 + #define MASS ((struct __hc08_bits *)(&FLCR))->bit2 + #define HVEN ((struct __hc08_bits *)(&FLCR))->bit3 + + +_VOLXDATA _UINT8 __at 0xfe09 FLBPR; /* FLASH Block Protect Register */ + #define BPR0 ((struct __hc08_bits *)(&FLBPR))->bit0 + #define BPR1 ((struct __hc08_bits *)(&FLBPR))->bit1 + #define BPR2 ((struct __hc08_bits *)(&FLBPR))->bit2 + #define BPR3 ((struct __hc08_bits *)(&FLBPR))->bit3 + #define BPR4 ((struct __hc08_bits *)(&FLBPR))->bit4 + #define BPR5 ((struct __hc08_bits *)(&FLBPR))->bit5 + #define BPR6 ((struct __hc08_bits *)(&FLBPR))->bit6 + #define BPR7 ((struct __hc08_bits *)(&FLBPR))->bit7 + + +_VOLXDATA _UINT16 __at 0xfe0C BRK; /* Break Address High & Low Registers */ +_VOLXDATA _UINT8 __at 0xfe0C BRKH; /* Break Address High Register */ +_VOLXDATA _UINT8 __at 0xfe0D BRKL; /* Break Address Low Register */ + +_VOLXDATA _UINT8 __at 0xfe0b BRKSCR; /* Break Status and Control Register */ + #define BRKA ((struct __hc08_bits *)(&BRKSCR))->bit6 + #define BRKE ((struct __hc08_bits *)(&BRKSCR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe0c LVISR; /* Low voltage detect */ + #define LVIOUT ((struct __hc08_bits *)(&LVISR))->bit7 + + +_VOLXDATA _UINT8 __at 0xffff COPCTL; /* COP Control Register */ + +#endif diff --git a/device/include/hc08/mc68hc908gp32.h b/device/include/hc08/mc68hc908gp32.h new file mode 100644 index 0000000..31407c7 --- /dev/null +++ b/device/include/hc08/mc68hc908gp32.h @@ -0,0 +1,550 @@ +/*------------------------------------------------------------------------- + mc68hc908gp.h - Register Declarations for Motorola MC68HC908GP32 + + Copyright (C) 2004, Juan Gonzalez <juan@iearobotics.com> + + Based on mc68hc908qy.h, + Written By - Erik Petrich epetrich@users.sourceforge.net (2003) + + This library 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 library 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 library; see the file COPYING. If not, write to the + Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, + MA 02110-1301, USA. + + As a special exception, if you link this library with other files, + some of which are compiled with SDCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License. This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. +-------------------------------------------------------------------------*/ + +#ifndef _MC68HC908GP32_H +#define _MC68HC908GP32_H + +#ifndef _UINT8 + #define _UINT8 unsigned char +#endif +#ifndef _UINT16 + #define _UINT16 unsigned int +#endif +#ifndef _VOLDATA + #define _VOLDATA volatile __data +#endif +#ifndef _VOLXDATA + #define _VOLXDATA volatile __xdata +#endif + +struct __hc08_bits +{ + unsigned int bit0:1; + unsigned int bit1:1; + unsigned int bit2:1; + unsigned int bit3:1; + unsigned int bit4:1; + unsigned int bit5:1; + unsigned int bit6:1; + unsigned int bit7:1; +}; + + +_VOLDATA _UINT8 __at 0x00 PTA; /* Port A Data Register */ +#define PORTA PTA /* Alias for PTA */ + #define PTA0 ((struct __hc08_bits *)(&PTA))->bit0 + #define PTA1 ((struct __hc08_bits *)(&PTA))->bit1 + #define PTA2 ((struct __hc08_bits *)(&PTA))->bit2 + #define PTA3 ((struct __hc08_bits *)(&PTA))->bit3 + #define PTA4 ((struct __hc08_bits *)(&PTA))->bit4 + #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5 + #define PTA6 ((struct __hc08_bits *)(&PTA))->bit6 + #define PTA7 ((struct __hc08_bits *)(&PTA))->bit7 + +_VOLDATA _UINT8 __at 0x01 PTB; /* Port B Data Register */ +#define PORTB PTB /* Alias for PTB */ + #define PTB0 ((struct __hc08_bits *)(&PTB))->bit0 + #define PTB1 ((struct __hc08_bits *)(&PTB))->bit1 + #define PTB2 ((struct __hc08_bits *)(&PTB))->bit2 + #define PTB3 ((struct __hc08_bits *)(&PTB))->bit3 + #define PTB4 ((struct __hc08_bits *)(&PTB))->bit4 + #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5 + #define PTB6 ((struct __hc08_bits *)(&PTB))->bit6 + #define PTB7 ((struct __hc08_bits *)(&PTB))->bit7 + +_VOLDATA _UINT8 __at 0x02 PTC; /* Port C Data Register */ +#define PORTC PTC /* Alias for PTC */ + #define PTC0 ((struct __hc08_bits *)(&PTC))->bit0 + #define PTC1 ((struct __hc08_bits *)(&PTC))->bit1 + #define PTC2 ((struct __hc08_bits *)(&PTC))->bit2 + #define PTC3 ((struct __hc08_bits *)(&PTC))->bit3 + #define PTC4 ((struct __hc08_bits *)(&PTC))->bit4 + #define PTC5 ((struct __hc08_bits *)(&PTC))->bit5 + #define PTC6 ((struct __hc08_bits *)(&PTC))->bit6 + #define PTC7 ((struct __hc08_bits *)(&PTC))->bit7 + +_VOLDATA _UINT8 __at 0x03 PTD; /* Port D Data Register */ +#define PORTD PTD /* Alias for PTD */ + #define PTD0 ((struct __hc08_bits *)(&PTD))->bit0 + #define PTD1 ((struct __hc08_bits *)(&PTD))->bit1 + #define PTD2 ((struct __hc08_bits *)(&PTD))->bit2 + #define PTD3 ((struct __hc08_bits *)(&PTD))->bit3 + #define PTD4 ((struct __hc08_bits *)(&PTD))->bit4 + #define PTD5 ((struct __hc08_bits *)(&PTD))->bit5 + #define PTD6 ((struct __hc08_bits *)(&PTD))->bit6 + #define PTD7 ((struct __hc08_bits *)(&PTD))->bit7 + +_VOLDATA _UINT8 __at 0x04 DDRA; /* Data Direction Register A */ + #define DDRA0 ((struct __hc08_bits *)(&DDRA))->bit0 + #define DDRA1 ((struct __hc08_bits *)(&DDRA))->bit1 + #define DDRA2 ((struct __hc08_bits *)(&DDRA))->bit2 + #define DDRA3 ((struct __hc08_bits *)(&DDRA))->bit3 + #define DDRA4 ((struct __hc08_bits *)(&DDRA))->bit4 + #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5 + #define DDRA6 ((struct __hc08_bits *)(&DDRA))->bit6 + #define DDRA7 ((struct __hc08_bits *)(&DDRA))->bit7 + +_VOLDATA _UINT8 __at 0x05 DDRB; /* Data Direction Register B */ + #define DDRB0 ((struct __hc08_bits *)(&DDRB))->bit0 + #define DDRB1 ((struct __hc08_bits *)(&DDRB))->bit1 + #define DDRB2 ((struct __hc08_bits *)(&DDRB))->bit2 + #define DDRB3 ((struct __hc08_bits *)(&DDRB))->bit3 + #define DDRB4 ((struct __hc08_bits *)(&DDRB))->bit4 + #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5 + #define DDRB6 ((struct __hc08_bits *)(&DDRB))->bit6 + #define DDRB7 ((struct __hc08_bits *)(&DDRB))->bit7 + +_VOLDATA _UINT8 __at 0x06 DDRC; /* Data Direction Register C */ + #define DDRC0 ((struct __hc08_bits *)(&DDRC))->bit0 + #define DDRC1 ((struct __hc08_bits *)(&DDRC))->bit1 + #define DDRC2 ((struct __hc08_bits *)(&DDRC))->bit2 + #define DDRC3 ((struct __hc08_bits *)(&DDRC))->bit3 + #define DDRC4 ((struct __hc08_bits *)(&DDRC))->bit4 + #define DDRC5 ((struct __hc08_bits *)(&DDRC))->bit5 + #define DDRC6 ((struct __hc08_bits *)(&DDRC))->bit6 + #define DDRC7 ((struct __hc08_bits *)(&DDRC))->bit7 + +_VOLDATA _UINT8 __at 0x07 DDRD; /* Data Direction Register D */ + #define DDRD0 ((struct __hc08_bits *)(&DDRD))->bit0 + #define DDRD1 ((struct __hc08_bits *)(&DDRD))->bit1 + #define DDRD2 ((struct __hc08_bits *)(&DDRD))->bit2 + #define DDRD3 ((struct __hc08_bits *)(&DDRD))->bit3 + #define DDRD4 ((struct __hc08_bits *)(&DDRD))->bit4 + #define DDRD5 ((struct __hc08_bits *)(&DDRD))->bit5 + #define DDRD6 ((struct __hc08_bits *)(&DDRD))->bit6 + #define DDRD7 ((struct __hc08_bits *)(&DDRD))->bit7 + +_VOLDATA _UINT8 __at 0x08 PTE; /* Port E Data Register */ +#define PORTE PTE /* Alias for PTE */ + #define PTE0 ((struct __hc08_bits *)(&PTE))->bit0 + #define PTE1 ((struct __hc08_bits *)(&PTE))->bit1 + #define PTE2 ((struct __hc08_bits *)(&PTE))->bit2 + #define PTE3 ((struct __hc08_bits *)(&PTE))->bit3 + #define PTE4 ((struct __hc08_bits *)(&PTE))->bit4 + #define PTE5 ((struct __hc08_bits *)(&PTE))->bit5 + #define PTE6 ((struct __hc08_bits *)(&PTE))->bit6 + #define PTE7 ((struct __hc08_bits *)(&PTE))->bit7 + +_VOLDATA _UINT8 __at 0x0C DDRE; /* Data Direction Register E */ + #define DDRE0 ((struct __hc08_bits *)(&DDRE))->bit0 + #define DDRE1 ((struct __hc08_bits *)(&DDRE))->bit1 + #define DDRE2 ((struct __hc08_bits *)(&DDRE))->bit2 + #define DDRE3 ((struct __hc08_bits *)(&DDRE))->bit3 + #define DDRE4 ((struct __hc08_bits *)(&DDRE))->bit4 + #define DDRE5 ((struct __hc08_bits *)(&DDRE))->bit5 + #define DDRE6 ((struct __hc08_bits *)(&DDRE))->bit6 + #define DDRE7 ((struct __hc08_bits *)(&DDRE))->bit7 + +_VOLDATA _UINT8 __at 0x0D PTAPUE; /* Port A pull-up enables */ + #define PTAPUE0 ((struct __hc08_bits *)(&PTAPUE))->bit0 + #define PTAPUE1 ((struct __hc08_bits *)(&PTAPUE))->bit1 + #define PTAPUE2 ((struct __hc08_bits *)(&PTAPUE))->bit2 + #define PTAPUE3 ((struct __hc08_bits *)(&PTAPUE))->bit3 + #define PTAPUE4 ((struct __hc08_bits *)(&PTAPUE))->bit4 + #define PTAPUE5 ((struct __hc08_bits *)(&PTAPUE))->bit5 + #define PTAPUE6 ((struct __hc08_bits *)(&PTAPUE))->bit6 + #define PTAPUE7 ((struct __hc08_bits *)(&PTAPUE))->bit7 + +_VOLDATA _UINT8 __at 0x0E PTCPUE; /* Port C pull-up enables */ + #define PTCPUE0 ((struct __hc08_bits *)(&PTCPUE))->bit0 + #define PTCPUE1 ((struct __hc08_bits *)(&PTCPUE))->bit1 + #define PTCPUE2 ((struct __hc08_bits *)(&PTCPUE))->bit2 + #define PTCPUE3 ((struct __hc08_bits *)(&PTCPUE))->bit3 + #define PTCPUE4 ((struct __hc08_bits *)(&PTCPUE))->bit4 + #define PTCPUE5 ((struct __hc08_bits *)(&PTCPUE))->bit5 + #define PTCPUE6 ((struct __hc08_bits *)(&PTCPUE))->bit6 + /* PTCPUE7 does not exit! */ + +_VOLDATA _UINT8 __at 0x0F PTDPUE; /* port D pull-up enables */ + #define PTDPUE0 ((struct __hc08_bits *)(&PTDPUE))->bit0 + #define PTDPUE1 ((struct __hc08_bits *)(&PTDPUE))->bit1 + #define PTDPUE2 ((struct __hc08_bits *)(&PTDPUE))->bit2 + #define PTDPUE3 ((struct __hc08_bits *)(&PTDPUE))->bit3 + #define PTDPUE4 ((struct __hc08_bits *)(&PTDPUE))->bit4 + #define PTDPUE5 ((struct __hc08_bits *)(&PTDPUE))->bit5 + #define PTDPUE6 ((struct __hc08_bits *)(&PTDPUE))->bit6 + #define PTDPUE7 ((struct __hc08_bits *)(&PTDPUE))->bit7 + +_VOLDATA _UINT8 __at 0x10 SPCR; /* SPI Control Register */ + #define SPRIE ((struct __hc08_bits *)(&SPCR))->bit7 + #define DMAS ((struct __hc08_bits *)(&SPCR))->bit6 + #define SPMSTR ((struct __hc08_bits *)(&SPCR))->bit5 + #define CPOL ((struct __hc08_bits *)(&SPCR))->bit4 + #define CPHA ((struct __hc08_bits *)(&SPCR))->bit3 + #define SPWOM ((struct __hc08_bits *)(&SPCR))->bit2 + #define SPE ((struct __hc08_bits *)(&SPCR))->bit1 + #define SPTIE ((struct __hc08_bits *)(&SPCR))->bit0 + +_VOLDATA _UINT8 __at 0x11 SPSCR; /* SPI Status and Control Register */ + #define SPRF ((struct __hc08_bits *)(&SPSCR))->bit7 + #define ERRIE ((struct __hc08_bits *)(&SPSCR))->bit6 + #define OVRF ((struct __hc08_bits *)(&SPSCR))->bit5 + #define MODF ((struct __hc08_bits *)(&SPSCR))->bit4 + #define SPTE ((struct __hc08_bits *)(&SPSCR))->bit3 + #define MODFEN ((struct __hc08_bits *)(&SPSCR))->bit2 + #define SPR1 ((struct __hc08_bits *)(&SPSCR))->bit1 + #define SPR0 ((struct __hc08_bits *)(&SPSCR))->bit0 + +_VOLDATA _UINT8 __at 0x12 SPDR; /* SPI Data Register */ + +_VOLDATA _UINT8 __at 0x13 SCC1; /* SCI Control Register 1 */ + #define LOOPS ((struct __hc08_bits *)(&SCC1))->bit7 + #define ENSCI ((struct __hc08_bits *)(&SCC1))->bit6 + #define TXINV ((struct __hc08_bits *)(&SCC1))->bit5 + #define M ((struct __hc08_bits *)(&SCC1))->bit4 + #define WAKE ((struct __hc08_bits *)(&SCC1))->bit3 + #define ILTY ((struct __hc08_bits *)(&SCC1))->bit2 + #define PEN ((struct __hc08_bits *)(&SCC1))->bit1 + #define PTY ((struct __hc08_bits *)(&SCC1))->bit0 + + +_VOLDATA _UINT8 __at 0x14 SCC2; /* SCI Control Register 2 */ + #define SCTIE ((struct __hc08_bits *)(&SCC2))->bit7 + #define TCIE ((struct __hc08_bits *)(&SCC2))->bit6 + #define SCRIE ((struct __hc08_bits *)(&SCC2))->bit5 + #define ILIE ((struct __hc08_bits *)(&SCC2))->bit4 + #define TE ((struct __hc08_bits *)(&SCC2))->bit3 + #define RE ((struct __hc08_bits *)(&SCC2))->bit2 + #define WRU ((struct __hc08_bits *)(&SCC2))->bit1 + #define SBK ((struct __hc08_bits *)(&SCC2))->bit0 + +_VOLDATA _UINT8 __at 0x15 SCC3; /* SCI Control Register 3 */ + #define SCC3_R8 ((struct __hc08_bits *)(&SCC3))->bit7 + #define SCC3_TB ((struct __hc08_bits *)(&SCC3))->bit6 + #define DMARE ((struct __hc08_bits *)(&SCC3))->bit5 + #define DMATE ((struct __hc08_bits *)(&SCC3))->bit4 + #define ORIE ((struct __hc08_bits *)(&SCC3))->bit3 + #define NEIE ((struct __hc08_bits *)(&SCC3))->bit2 + #define FEIE ((struct __hc08_bits *)(&SCC3))->bit1 + #define PEIE ((struct __hc08_bits *)(&SCC3))->bit0 + +_VOLDATA _UINT8 __at 0x16 SCS1; /* SCI Status Register 1 */ + #define SCTE ((struct __hc08_bits *)(&SCS1))->bit7 + #define TC ((struct __hc08_bits *)(&SCS1))->bit6 + #define SCRF ((struct __hc08_bits *)(&SCS1))->bit5 + #define IDLE ((struct __hc08_bits *)(&SCS1))->bit4 + #define OR ((struct __hc08_bits *)(&SCS1))->bit3 + #define NF ((struct __hc08_bits *)(&SCS1))->bit2 + #define FE ((struct __hc08_bits *)(&SCS1))->bit1 + #define PE ((struct __hc08_bits *)(&SCS1))->bit0 + +_VOLDATA _UINT8 __at 0x17 SCS2; /* SCI Status Register 2 */ + #define RPF ((struct __hc08_bits *)(&SCS2))->bit0 + #define BKF ((struct __hc08_bits *)(&SCS2))->bit1 + /* Bits 2-7 not implemented */ + +_VOLDATA _UINT8 __at 0x18 SCDR; /* SCI Data Register */ + +_VOLDATA _UINT8 __at 0x19 SCBR; /* SCI Baud Rate Register */ + #define SCP1 ((struct __hc08_bits *)(&SCBR))->bit5 + #define SCP0 ((struct __hc08_bits *)(&SCBR))->bit4 + #define R ((struct __hc08_bits *)(&SCBR))->bit3 + #define SCR2 ((struct __hc08_bits *)(&SCBR))->bit2 + #define SCR1 ((struct __hc08_bits *)(&SCBR))->bit1 + #define SCR0 ((struct __hc08_bits *)(&SCBR))->bit0 + /*-- Bits 6 and 7 do not exist */ + +_VOLDATA _UINT8 __at 0x1a INTKBSCR; /* Keyboard Status and Control Register */ + #define KEYF ((struct __hc08_bits *)(&INTKBSCR))->bit3 + #define ACKK ((struct __hc08_bits *)(&INTKBSCR))->bit2 + #define IMASKK ((struct __hc08_bits *)(&INTKBSCR))->bit1 + #define MODEK ((struct __hc08_bits *)(&INTKBSCR))->bit0 + /*-- Bits 4-7 do not exist */ + +_VOLDATA _UINT8 __at 0x1b INTKBIER; /* Keyboard Interrupt Enable Register */ + #define KBIE7 ((struct __hc08_bits *)(&INTKBIER))->bit7 + #define KBIE6 ((struct __hc08_bits *)(&INTKBIER))->bit6 + #define KBIE5 ((struct __hc08_bits *)(&INTKBIER))->bit5 + #define KBIE4 ((struct __hc08_bits *)(&INTKBIER))->bit4 + #define KBIE3 ((struct __hc08_bits *)(&INTKBIER))->bit3 + #define KBIE2 ((struct __hc08_bits *)(&INTKBIER))->bit2 + #define KBIE1 ((struct __hc08_bits *)(&INTKBIER))->bit1 + #define KBIE0 ((struct __hc08_bits *)(&INTKBIER))->bit0 + +_VOLDATA _UINT8 __at 0x1C TBCR; /* Time Base Module Control */ + #define TBIF ((struct __hc08_bits *)(&TBCR))->bit7 + #define TBR2 ((struct __hc08_bits *)(&TBCR))->bit6 + #define TBR1 ((struct __hc08_bits *)(&TBCR))->bit5 + #define TBR0 ((struct __hc08_bits *)(&TBCR))->bit4 + #define TACK ((struct __hc08_bits *)(&TBCR))->bit3 + #define TBIE ((struct __hc08_bits *)(&TBCR))->bit2 + #define TBON ((struct __hc08_bits *)(&TBCR))->bit1 + /* Bit 0 Reserved */ + +_VOLDATA _UINT8 __at 0x1D INTSCR; /* IRQ status/control */ + #define IRQF1 ((struct __hc08_bits *)(&INTSCR))->bit3 + #define ACK1 ((struct __hc08_bits *)(&INTSCR))->bit2 + #define IMASK1 ((struct __hc08_bits *)(&INTSCR))->bit1 + #define MODE1 ((struct __hc08_bits *)(&INTSCR))->bit0 + /* Bits 4-7 unimplemented */ + +_VOLDATA _UINT8 __at 0x1e CONFIG2; /* Configuration Register 2 */ +/* CONFIG2 is one-time writeble, so can't use bitfields */ + +_VOLDATA _UINT8 __at 0x1f CONFIG1; /* Configuration Register 1 */ +/* CONFIG1 is one-time writeable, so can't use bitfields */ + +_VOLDATA _UINT8 __at 0x20 T1SC; /* TIM 1 Status and Control */ + #define PS0 ((struct __hc08_bits *)(&T1SC))->bit0 + #define PS1 ((struct __hc08_bits *)(&T1SC))->bit1 + #define PS2 ((struct __hc08_bits *)(&T1SC))->bit2 + #define TRST ((struct __hc08_bits *)(&T1SC))->bit4 + #define TSTOP ((struct __hc08_bits *)(&T1SC))->bit5 + #define TOIE ((struct __hc08_bits *)(&T1SC))->bit6 + #define TOF ((struct __hc08_bits *)(&T1SC))->bit7 + +_VOLDATA _UINT16 __at 0x21 T1CNT; /* TIM1 Counter High & Low Registers */ +_VOLDATA _UINT8 __at 0x21 T1CNTH; /* TIM1 Counter Register High */ +_VOLDATA _UINT8 __at 0x22 T1CNTL; /* TIM1 Counter Register Low */ + +_VOLDATA _UINT16 __at 0x23 T1MOD; /* TIM1 Counter Modulo High & Low Registers */ +_VOLDATA _UINT8 __at 0x23 T1MODH; /* TIM1 Counter Modulo Register High */ +_VOLDATA _UINT8 __at 0x24 T1MODL; /* TIM1 Counter Modulo Register Low */ + +_VOLDATA _UINT8 __at 0x25 T1SC0; /* TIM1 Channel 0 Status and Control Register */ + #define CH0MAX ((struct __hc08_bits *)(&T1SC0))->bit0 + #define TOV0 ((struct __hc08_bits *)(&T1SC0))->bit1 + #define ELS0A ((struct __hc08_bits *)(&T1SC0))->bit2 + #define ELS0B ((struct __hc08_bits *)(&T1SC0))->bit3 + #define MS0A ((struct __hc08_bits *)(&T1SC0))->bit4 + #define MS0B ((struct __hc08_bits *)(&T1SC0))->bit5 + #define CH0IE ((struct __hc08_bits *)(&T1SC0))->bit6 + #define CH0F ((struct __hc08_bits *)(&T1SC0))->bit7 + +_VOLDATA _UINT16 __at 0x26 T1CH0; /* TIM1 Channel 0 High & Low Registers */ +_VOLDATA _UINT8 __at 0x26 T1CH0H; /* TIM1 Channel 0 Register High */ +_VOLDATA _UINT8 __at 0x27 T1CH0L; /* TIM1 Channel 0 Register Low */ + +_VOLDATA _UINT8 __at 0x28 T1SC1; /* TIM1 Channel 1 Status and Control Register */ + #define CH1MAX ((struct __hc08_bits *)(&T1SC1))->bit0 + #define TOV1 ((struct __hc08_bits *)(&T1SC1))->bit1 + #define ELS1A ((struct __hc08_bits *)(&T1SC1))->bit2 + #define ELS1B ((struct __hc08_bits *)(&T1SC1))->bit3 + #define MS1A ((struct __hc08_bits *)(&T1SC1))->bit4 + #define CH1IE ((struct __hc08_bits *)(&T1SC1))->bit6 + #define CH1F ((struct __hc08_bits *)(&T1SC1))->bit7 + +_VOLDATA _UINT16 __at 0x29 T1CH1; /* TIM1 Channel 1 High & Low Registers */ +_VOLDATA _UINT8 __at 0x29 T1CH1H; /* TIM1 Channel 1 Register High */ +_VOLDATA _UINT8 __at 0x2A T1CH1L; /* TIM1 Channel 1 Register Low */ + +/*------------------*/ +/* TIM 2 REGISTERS */ +/*------------------*/ + +_VOLDATA _UINT8 __at 0x2B T2SC; /* TIM 2 Status and Control */ + #define PS0_2 ((struct __hc08_bits *)(&T2SC))->bit0 + #define PS1_2 ((struct __hc08_bits *)(&T2SC))->bit1 + #define PS2_2 ((struct __hc08_bits *)(&T2SC))->bit2 + #define TRST_2 ((struct __hc08_bits *)(&T2SC))->bit4 + #define TSTOP_2 ((struct __hc08_bits *)(&T2SC))->bit5 + #define TOIE_2 ((struct __hc08_bits *)(&T2SC))->bit6 + #define TOF_2 ((struct __hc08_bits *)(&T2SC))->bit7 + +_VOLDATA _UINT16 __at 0x2C T2CNT; /* TIM2 Counter High & Low Registers */ +_VOLDATA _UINT8 __at 0x2C T2CNTH; /* TIM2 Counter Register High */ +_VOLDATA _UINT8 __at 0x2D T2CNTL; /* TIM2 Counter Register Low */ + +_VOLDATA _UINT16 __at 0x2E T2MOD; /* TIM2 Counter Modulo High & Low Registers */ +_VOLDATA _UINT8 __at 0x2E T2MODH; /* TIM2 Counter Modulo Register High */ +_VOLDATA _UINT8 __at 0x2F T2MODL; /* TIM2 Counter Modulo Register Low */ + +_VOLDATA _UINT8 __at 0x30 T2SC0; /* TIM2 Channel 0 Status and Control Register */ + #define CH0MAX_2 ((struct __hc08_bits *)(&T2SC0))->bit0 + #define TOV0_2 ((struct __hc08_bits *)(&T2SC0))->bit1 + #define ELS0A_2 ((struct __hc08_bits *)(&T2SC0))->bit2 + #define ELS0B_2 ((struct __hc08_bits *)(&T2SC0))->bit3 + #define MS0A_2 ((struct __hc08_bits *)(&T2SC0))->bit4 + #define MS0B_2 ((struct __hc08_bits *)(&T2SC0))->bit5 + #define CH0IE_2 ((struct __hc08_bits *)(&T2SC0))->bit6 + #define CH0F_2 ((struct __hc08_bits *)(&T2SC0))->bit7 + +_VOLDATA _UINT16 __at 0x31 T2CH0; /* TIM2 Channel 0 High & Low Registers */ +_VOLDATA _UINT8 __at 0x31 T2CH0H; /* TIM2 Channel 0 Register High */ +_VOLDATA _UINT8 __at 0x32 T2CH0L; /* TIM2 Channel 0 Register Low */ + +_VOLDATA _UINT8 __at 0x33 T2SC1; /* TIM2 Channel 1 Status and Control Register */ + #define CH1MAX_2 ((struct __hc08_bits *)(&T2SC1))->bit0 + #define TOV1_2 ((struct __hc08_bits *)(&T2SC1))->bit1 + #define ELS1A_2 ((struct __hc08_bits *)(&T2SC1))->bit2 + #define ELS1B_2 ((struct __hc08_bits *)(&T2SC1))->bit3 + #define MS1A_2 ((struct __hc08_bits *)(&T2SC1))->bit4 + #define CH1IE_2 ((struct __hc08_bits *)(&T2SC1))->bit6 + #define CH1F_2 ((struct __hc08_bits *)(&T2SC1))->bit7 + +_VOLDATA _UINT16 __at 0x34 T2CH1; /* TIM2 Channel 1 High & Low Registers */ +_VOLDATA _UINT8 __at 0x34 T2CH1H; /* TIM2 Channel 1 Register High */ +_VOLDATA _UINT8 __at 0x35 T2CH1L; /* TIM2 Channel 1 Register Low */ + +_VOLDATA _UINT8 __at 0x36 PCTL; /* PLL Control Register */ + #define PLLIE ((struct __hc08_bits *)(&PCTL))->bit7 + #define PLLF ((struct __hc08_bits *)(&PCTL))->bit6 + #define PLLON ((struct __hc08_bits *)(&PCTL))->bit5 + #define BCS ((struct __hc08_bits *)(&PCTL))->bit4 + #define PRE1 ((struct __hc08_bits *)(&PCTL))->bit3 + #define PRE0 ((struct __hc08_bits *)(&PCTL))->bit2 + #define VPR1 ((struct __hc08_bits *)(&PCTL))->bit1 + #define VPR0 ((struct __hc08_bits *)(&PCTL))->bit0 + +_VOLDATA _UINT8 __at 0x37 PBWC; /* PLL Bandwidth Control Register */ + #define AUTO ((struct __hc08_bits *)(&PBWC))->bit7 + #define LOCK ((struct __hc08_bits *)(&PBWC))->bit6 + #define ACQ ((struct __hc08_bits *)(&PBWC))->bit5 + /* Bits 1-4, Unimplemented */ + /* Bit 0, Reserved */ + +_VOLDATA _UINT8 __at 0x38 PMSH; /* PLL Multiplier Select High */ + #define MUL11 ((struct __hc08_bits *)(&PMSH))->bit3 + #define MUL10 ((struct __hc08_bits *)(&PMSH))->bit2 + #define MUL9 ((struct __hc08_bits *)(&PMSH))->bit1 + #define MUL8 ((struct __hc08_bits *)(&PMSH))->bit0 + /* Bits 4-7 unimplemented */ + +_VOLDATA _UINT8 __at 0x39 PMSL; /* PLL Multiplir Select Low */ + #define MUL7 ((struct __hc08_bits *)(&PMSL))->bit7 + #define MUL6 ((struct __hc08_bits *)(&PMSL))->bit6 + #define MUL5 ((struct __hc08_bits *)(&PMSL))->bit5 + #define MUL4 ((struct __hc08_bits *)(&PMSL))->bit4 + #define MUL3 ((struct __hc08_bits *)(&PMSL))->bit3 + #define MUL2 ((struct __hc08_bits *)(&PMSL))->bit2 + #define MUL1 ((struct __hc08_bits *)(&PMSL))->bit1 + #define MUL0 ((struct __hc08_bits *)(&PMSL))->bit0 + +_VOLDATA _UINT8 __at 0x3a PMRS; /* PLL VCO Select Range */ + #define VRS7 ((struct __hc08_bits *)(&PMRS))->bit7 + #define VRS6 ((struct __hc08_bits *)(&PMRS))->bit6 + #define VRS5 ((struct __hc08_bits *)(&PMRS))->bit5 + #define VRS4 ((struct __hc08_bits *)(&PMRS))->bit4 + #define VRS3 ((struct __hc08_bits *)(&PMRS))->bit3 + #define VRS2 ((struct __hc08_bits *)(&PMRS))->bit2 + #define VRS1 ((struct __hc08_bits *)(&PMRS))->bit1 + #define VRS0 ((struct __hc08_bits *)(&PMRS))->bit0 + +_VOLDATA _UINT8 __at 0x3b PMDS; /* PLL Reference Divider Select Register */ + #define RDS3 ((struct __hc08_bits *)(&PMDS))->bit3 + #define RDS2 ((struct __hc08_bits *)(&PMDS))->bit2 + #define RDS1 ((struct __hc08_bits *)(&PMDS))->bit1 + #define RDS0 ((struct __hc08_bits *)(&PMDS))->bit0 + /* Bits 4-7 unimplemented */ + +_VOLDATA _UINT8 __at 0x3c ADSCR; /* Analog-to-Digital Status and Control Reg. */ + #define COCO ((struct __hc08_bits *)(&ADSCR))->bit7 + #define AIEN ((struct __hc08_bits *)(&ADSCR))->bit6 + #define ADCO ((struct __hc08_bits *)(&ADSCR))->bit5 + #define ADCH4 ((struct __hc08_bits *)(&ADSCR))->bit4 + #define ADCH3 ((struct __hc08_bits *)(&ADSCR))->bit3 + #define ADCH2 ((struct __hc08_bits *)(&ADSCR))->bit2 + #define ADCH1 ((struct __hc08_bits *)(&ADSCR))->bit1 + #define ADCH0 ((struct __hc08_bits *)(&ADSCR))->bit0 + +_VOLDATA _UINT8 __at 0x3d ADR; /* Analog-to-Digital Data Register */ + +_VOLDATA _UINT8 __at 0x3e ADCLK; /* Analog-to-Digital Clock */ + #define ADIV2 ((struct __hc08_bits *)(&ADCLK))->bit7 + #define ADIV1 ((struct __hc08_bits *)(&ADCLK))->bit6 + #define ADIV0 ((struct __hc08_bits *)(&ADCLK))->bit5 + #define ADICLK ((struct __hc08_bits *)(&ADCLK))->bit4 + /* Bits 0-3 unimplemented */ + +_VOLXDATA _UINT8 __at 0xfe00 SBSR; /* SIM Break Status Register */ + #define SBSW ((struct __hc08_bits *)(&SBSR))->bit1 + +_VOLXDATA _UINT8 __at 0xfe01 SRSR; /* SIM Reset Status Register */ + #define LVI ((struct __hc08_bits *)(&SRSR))->bit1 + #define MODRST ((struct __hc08_bits *)(&SRSR))->bit2 + #define ILAD ((struct __hc08_bits *)(&SRSR))->bit3 + #define ILOP ((struct __hc08_bits *)(&SRSR))->bit4 + #define COP ((struct __hc08_bits *)(&SRSR))->bit5 + #define PIN ((struct __hc08_bits *)(&SRSR))->bit6 + #define POR ((struct __hc08_bits *)(&SRSR))->bit7 + /* Bit 0 unimplemented */ + +_VOLXDATA _UINT8 __at 0xfe02 SUBAR; /* SIM Upper Byte Address */ + +_VOLXDATA _UINT8 __at 0xfe03 SBFCR; /* SIM Break Flag Control Register */ + #define BFCE ((struct __hc08_bits *)(&BFCR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe04 INT1; /* Interrupt Status Register 1 */ + #define IF1 ((struct __hc08_bits *)(&INT1))->bit2 + #define IF2 ((struct __hc08_bits *)(&INT1))->bit3 + #define IF3 ((struct __hc08_bits *)(&INT1))->bit4 + #define IF4 ((struct __hc08_bits *)(&INT1))->bit5 + #define IF5 ((struct __hc08_bits *)(&INT1))->bit6 + #define IF6 ((struct __hc08_bits *)(&INT1))->bit7 + /* Bits 0-1 Reserved */ + +_VOLXDATA _UINT8 __at 0xfe05 INT2; /* Interrupt Status Register 2 */ + #define IF14 ((struct __hc08_bits *)(&INT2))->bit7 + #define IF13 ((struct __hc08_bits *)(&INT2))->bit6 + #define IF12 ((struct __hc08_bits *)(&INT2))->bit5 + #define IF11 ((struct __hc08_bits *)(&INT2))->bit4 + #define IF10 ((struct __hc08_bits *)(&INT2))->bit3 + #define IF9 ((struct __hc08_bits *)(&INT2))->bit2 + #define IF8 ((struct __hc08_bits *)(&INT2))->bit1 + #define IF7 ((struct __hc08_bits *)(&INT2))->bit0 + +_VOLXDATA _UINT8 __at 0xfe06 INT3; /* Interrupt Status Register 3 */ + #define IF16 ((struct __hc08_bits *)(&INT3))->bit1 + #define IF15 ((struct __hc08_bits *)(&INT3))->bit0 + +_VOLXDATA _UINT8 __at 0xfe07 FLCTR; /* Flash test/programming */ + +_VOLXDATA _UINT8 __at 0xfe08 FLCR; /* FLASH Control Register */ + #define PGM ((struct __hc08_bits *)(&FLCR))->bit0 + #define ERASE ((struct __hc08_bits *)(&FLCR))->bit1 + #define MASS ((struct __hc08_bits *)(&FLCR))->bit2 + #define HVEN ((struct __hc08_bits *)(&FLCR))->bit3 + +_VOLXDATA _UINT16 __at 0xfe09 BRK; /* Break Address High & Low Registers */ +_VOLXDATA _UINT8 __at 0xfe09 BRKH; /* Break Address High Register */ +_VOLXDATA _UINT8 __at 0xfe0a BRKL; /* Break Address Low Register */ + +_VOLXDATA _UINT8 __at 0xfe0b BRKSCR; /* Break Status and Control Register */ + #define BRKA ((struct __hc08_bits *)(&BRKSCR))->bit6 + #define BRKE ((struct __hc08_bits *)(&BRKSCR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe0c LVISR; /* Low voltage detect */ + #define LVIOUT ((struct __hc08_bits *)(&LVISR))->bit7 + + +_VOLXDATA _UINT8 __at 0xfe7e FLBPR; /* FLASH Block Protect Register */ + #define BPR0 ((struct __hc08_bits *)(&FLBPR))->bit0 + #define BPR1 ((struct __hc08_bits *)(&FLBPR))->bit1 + #define BPR2 ((struct __hc08_bits *)(&FLBPR))->bit2 + #define BPR3 ((struct __hc08_bits *)(&FLBPR))->bit3 + #define BPR4 ((struct __hc08_bits *)(&FLBPR))->bit4 + #define BPR5 ((struct __hc08_bits *)(&FLBPR))->bit5 + #define BPR6 ((struct __hc08_bits *)(&FLBPR))->bit6 + #define BPR7 ((struct __hc08_bits *)(&FLBPR))->bit7 + +_VOLXDATA _UINT8 __at 0xffff COPCTL; /* COP Control Register */ + +#endif diff --git a/device/include/hc08/mc68hc908jb8.h b/device/include/hc08/mc68hc908jb8.h new file mode 100644 index 0000000..3fb3615 --- /dev/null +++ b/device/include/hc08/mc68hc908jb8.h @@ -0,0 +1,414 @@ +/*------------------------------------------------------------------------- + mc68hc908jb8.h - Register Declarations for Motorola MC68HC908JB8 + + Copyright (C) 2004, Bjorn Bringert <bjorn@bringert.net> + Based on mc68hc908qy.h, + written By - Erik Petrich epetrich@users.sourceforge.net (2003) + + This library 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 library 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 library; see the file COPYING. If not, write to the + Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, + MA 02110-1301, USA. + + As a special exception, if you link this library with other files, + some of which are compiled with SDCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License. This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. +-------------------------------------------------------------------------*/ + + +#ifndef _MC68HC908JB8_H +#define _MC68HC908JB8_H + +#ifndef _UINT8 + #define _UINT8 unsigned char +#endif +#ifndef _UINT16 + #define _UINT16 unsigned int +#endif +#ifndef _VOLDATA + #define _VOLDATA volatile __data +#endif +#ifndef _VOLXDATA + #define _VOLXDATA volatile __xdata +#endif + +struct __hc08_bits +{ + unsigned int bit0:1; + unsigned int bit1:1; + unsigned int bit2:1; + unsigned int bit3:1; + unsigned int bit4:1; + unsigned int bit5:1; + unsigned int bit6:1; + unsigned int bit7:1; +}; + + +_VOLDATA _UINT8 __at 0x00 PTA; /* Port A Data Register */ + #define PTA0 ((struct __hc08_bits *)(&PTA))->bit0 + #define PTA1 ((struct __hc08_bits *)(&PTA))->bit1 + #define PTA2 ((struct __hc08_bits *)(&PTA))->bit2 + #define PTA3 ((struct __hc08_bits *)(&PTA))->bit3 + #define PTA4 ((struct __hc08_bits *)(&PTA))->bit4 + #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5 + #define PTA6 ((struct __hc08_bits *)(&PTA))->bit6 + #define PTA7 ((struct __hc08_bits *)(&PTA))->bit7 + +_VOLDATA _UINT8 __at 0x01 PTB; /* Port B Data Register */ + #define PTB0 ((struct __hc08_bits *)(&PTB))->bit0 + #define PTB1 ((struct __hc08_bits *)(&PTB))->bit1 + #define PTB2 ((struct __hc08_bits *)(&PTB))->bit2 + #define PTB3 ((struct __hc08_bits *)(&PTB))->bit3 + #define PTB4 ((struct __hc08_bits *)(&PTB))->bit4 + #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5 + #define PTB6 ((struct __hc08_bits *)(&PTB))->bit6 + #define PTB7 ((struct __hc08_bits *)(&PTB))->bit7 + +_VOLDATA _UINT8 __at 0x02 PTC; /* Port C Data Register */ + #define PTC0 ((struct __hc08_bits *)(&PTC))->bit0 + #define PTC1 ((struct __hc08_bits *)(&PTC))->bit1 + #define PTC2 ((struct __hc08_bits *)(&PTC))->bit2 + #define PTC3 ((struct __hc08_bits *)(&PTC))->bit3 + #define PTC4 ((struct __hc08_bits *)(&PTC))->bit4 + #define PTC5 ((struct __hc08_bits *)(&PTC))->bit5 + #define PTC6 ((struct __hc08_bits *)(&PTC))->bit6 + #define PTC7 ((struct __hc08_bits *)(&PTC))->bit7 + +_VOLDATA _UINT8 __at 0x03 PTD; /* Port D Data Register */ + #define PTD0 ((struct __hc08_bits *)(&PTD))->bit0 + #define PTD1 ((struct __hc08_bits *)(&PTD))->bit1 + #define PTD2 ((struct __hc08_bits *)(&PTD))->bit2 + #define PTD3 ((struct __hc08_bits *)(&PTD))->bit3 + #define PTD4 ((struct __hc08_bits *)(&PTD))->bit4 + #define PTD5 ((struct __hc08_bits *)(&PTD))->bit5 + #define PTD6 ((struct __hc08_bits *)(&PTD))->bit6 + #define PTD7 ((struct __hc08_bits *)(&PTD))->bit7 + +_VOLDATA _UINT8 __at 0x04 DDRA; /* Data Direction Register A */ + #define DDRA0 ((struct __hc08_bits *)(&DDRA))->bit0 + #define DDRA1 ((struct __hc08_bits *)(&DDRA))->bit1 + #define DDRA2 ((struct __hc08_bits *)(&DDRA))->bit2 + #define DDRA3 ((struct __hc08_bits *)(&DDRA))->bit3 + #define DDRA4 ((struct __hc08_bits *)(&DDRA))->bit4 + #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5 + #define DDRA6 ((struct __hc08_bits *)(&DDRA))->bit6 + #define DDRA7 ((struct __hc08_bits *)(&DDRA))->bit7 + +_VOLDATA _UINT8 __at 0x05 DDRB; /* Data Direction Register B */ + #define DDRB0 ((struct __hc08_bits *)(&DDRB))->bit0 + #define DDRB1 ((struct __hc08_bits *)(&DDRB))->bit1 + #define DDRB2 ((struct __hc08_bits *)(&DDRB))->bit2 + #define DDRB3 ((struct __hc08_bits *)(&DDRB))->bit3 + #define DDRB4 ((struct __hc08_bits *)(&DDRB))->bit4 + #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5 + #define DDRB6 ((struct __hc08_bits *)(&DDRB))->bit6 + #define DDRB7 ((struct __hc08_bits *)(&DDRB))->bit7 + +_VOLDATA _UINT8 __at 0x06 DDRC; /* Data Direction Register C */ + #define DDRC0 ((struct __hc08_bits *)(&DDRC))->bit0 + #define DDRC1 ((struct __hc08_bits *)(&DDRC))->bit1 + #define DDRC2 ((struct __hc08_bits *)(&DDRC))->bit2 + #define DDRC3 ((struct __hc08_bits *)(&DDRC))->bit3 + #define DDRC4 ((struct __hc08_bits *)(&DDRC))->bit4 + #define DDRC5 ((struct __hc08_bits *)(&DDRC))->bit5 + #define DDRC6 ((struct __hc08_bits *)(&DDRC))->bit6 + #define DDRC7 ((struct __hc08_bits *)(&DDRC))->bit7 + +_VOLDATA _UINT8 __at 0x07 DDRD; /* Data Direction Register D */ + #define DDRD0 ((struct __hc08_bits *)(&DDRD))->bit0 + #define DDRD1 ((struct __hc08_bits *)(&DDRD))->bit1 + #define DDRD2 ((struct __hc08_bits *)(&DDRD))->bit2 + #define DDRD3 ((struct __hc08_bits *)(&DDRD))->bit3 + #define DDRD4 ((struct __hc08_bits *)(&DDRD))->bit4 + #define DDRD5 ((struct __hc08_bits *)(&DDRD))->bit5 + #define DDRD6 ((struct __hc08_bits *)(&DDRD))->bit6 + #define DDRD7 ((struct __hc08_bits *)(&DDRD))->bit7 + +_VOLDATA _UINT8 __at 0x08 PTE; /* Port E Data Register */ + #define PTE0 ((struct __hc08_bits *)(&PTE))->bit0 + #define PTE1 ((struct __hc08_bits *)(&PTE))->bit1 + #define PTE2 ((struct __hc08_bits *)(&PTE))->bit2 + #define PTE3 ((struct __hc08_bits *)(&PTE))->bit3 + #define PTE4 ((struct __hc08_bits *)(&PTE))->bit4 + #define PTE5 ((struct __hc08_bits *)(&PTE))->bit5 + #define PTE6 ((struct __hc08_bits *)(&PTE))->bit6 + #define PTE7 ((struct __hc08_bits *)(&PTE))->bit7 + +_VOLDATA _UINT8 __at 0x09 DDRE; /* Data Direction Register E */ + #define DDRE0 ((struct __hc08_bits *)(&DDRE))->bit0 + #define DDRE1 ((struct __hc08_bits *)(&DDRE))->bit1 + #define DDRE2 ((struct __hc08_bits *)(&DDRE))->bit2 + #define DDRE3 ((struct __hc08_bits *)(&DDRE))->bit3 + #define DDRE4 ((struct __hc08_bits *)(&DDRE))->bit4 + #define DDRE5 ((struct __hc08_bits *)(&DDRE))->bit5 + #define DDRE6 ((struct __hc08_bits *)(&DDRE))->bit6 + #define DDRE7 ((struct __hc08_bits *)(&DDRE))->bit7 + +_VOLDATA _UINT8 __at 0x0a TSC; /* TIM Status and Control */ + #define PS0 ((struct __hc08_bits *)(&TSC))->bit0 + #define PS1 ((struct __hc08_bits *)(&TSC))->bit1 + #define PS2 ((struct __hc08_bits *)(&TSC))->bit2 + #define TRST ((struct __hc08_bits *)(&TSC))->bit4 + #define TSTOP ((struct __hc08_bits *)(&TSC))->bit5 + #define TOIE ((struct __hc08_bits *)(&TSC))->bit6 + #define TOF ((struct __hc08_bits *)(&TSC))->bit7 + +_VOLDATA _UINT16 __at 0x0c TCNT; /* TIM Counter High & Low Registers */ +_VOLDATA _UINT8 __at 0x0c TCNTH; /* TIM Counter Register High */ +_VOLDATA _UINT8 __at 0x0d TCNTL; /* TIM Counter Register Low */ + +_VOLDATA _UINT16 __at 0x0e TMOD; /* TIM Counter Modulo High & Low Registers */ +_VOLDATA _UINT8 __at 0x0e TMODH; /* TIM Counter Modulo Register High */ +_VOLDATA _UINT8 __at 0x0f TMODL; /* TIM Counter Modulo Register Low */ + +_VOLDATA _UINT8 __at 0x10 TSC0; /* TIM Channel 0 Status and Control Register */ + #define CH0MAX ((struct __hc08_bits *)(&TSC0))->bit0 + #define TOV0 ((struct __hc08_bits *)(&TSC0))->bit1 + #define ELS0A ((struct __hc08_bits *)(&TSC0))->bit2 + #define ELS0B ((struct __hc08_bits *)(&TSC0))->bit3 + #define MS0A ((struct __hc08_bits *)(&TSC0))->bit4 + #define MS0B ((struct __hc08_bits *)(&TSC0))->bit5 + #define CH0IE ((struct __hc08_bits *)(&TSC0))->bit6 + #define CH0F ((struct __hc08_bits *)(&TSC0))->bit7 + +_VOLDATA _UINT16 __at 0x11 TCH0; /* TIM Channel 0 High & Low Registers */ +_VOLDATA _UINT8 __at 0x11 TCH0H; /* TIM Channel 0 Register High */ +_VOLDATA _UINT8 __at 0x12 TCH0L; /* TIM Channel 0 Register Low */ + +_VOLDATA _UINT8 __at 0x13 TSC1; /* TIM Channel 1 Status and Control Register */ + #define CH1MAX ((struct __hc08_bits *)(&TSC1))->bit0 + #define TOV1 ((struct __hc08_bits *)(&TSC1))->bit1 + #define ELS1A ((struct __hc08_bits *)(&TSC1))->bit2 + #define ELS1B ((struct __hc08_bits *)(&TSC1))->bit3 + #define MS1A ((struct __hc08_bits *)(&TSC1))->bit4 + #define CH1IE ((struct __hc08_bits *)(&TSC1))->bit6 + #define CH1F ((struct __hc08_bits *)(&TSC1))->bit7 + +_VOLDATA _UINT16 __at 0x14 TCH1; /* TIM Channel 1 High & Low Registers */ +_VOLDATA _UINT8 __at 0x14 TCH1H; /* TIM Channel 1 Register High */ +_VOLDATA _UINT8 __at 0x15 TCH1L; /* TIM Channel 1 Register Low */ + +_VOLDATA _UINT8 __at 0x16 KBSCR; /* Keyboard Status and Control Register */ + #define MODEK ((struct __hc08_bits *)(&KBSCR))->bit0 + #define IMASKK ((struct __hc08_bits *)(&KBSCR))->bit1 + #define ACKK ((struct __hc08_bits *)(&KBSCR))->bit2 + #define KEYF ((struct __hc08_bits *)(&KBSCR))->bit3 + +_VOLDATA _UINT8 __at 0x17 KBIER; /* Keyboard Interrupt Enable Register */ + #define KBIE0 ((struct __hc08_bits *)(&KBIER))->bit0 + #define KBIE1 ((struct __hc08_bits *)(&KBIER))->bit1 + #define KBIE2 ((struct __hc08_bits *)(&KBIER))->bit2 + #define KBIE3 ((struct __hc08_bits *)(&KBIER))->bit3 + #define KBIE4 ((struct __hc08_bits *)(&KBIER))->bit4 + #define KBIE5 ((struct __hc08_bits *)(&KBIER))->bit5 + #define KBIE6 ((struct __hc08_bits *)(&KBIER))->bit6 + #define KBIE7 ((struct __hc08_bits *)(&KBIER))->bit7 + +_VOLDATA _UINT8 __at 0x18 UIR2; /* USB Interrupt Register 2 */ + #define RXD0FR ((struct __hc08_bits *)(&UIR2))->bit0 + #define TXD0FR ((struct __hc08_bits *)(&UIR2))->bit1 + #define RESUMFR ((struct __hc08_bits *)(&UIR2))->bit2 + #define TXD1FR ((struct __hc08_bits *)(&UIR2))->bit3 + #define RXD2FR ((struct __hc08_bits *)(&UIR2))->bit4 + #define TXD2FR ((struct __hc08_bits *)(&UIR2))->bit5 + #define RSTFR ((struct __hc08_bits *)(&UIR2))->bit6 + #define EOPFR ((struct __hc08_bits *)(&UIR2))->bit7 + +_VOLDATA _UINT8 __at 0x19 UCR2; /* USB Control Register 2 */ + #define TP2SIZ0 ((struct __hc08_bits *)(&UCR2))->bit0 + #define TP2SIZ1 ((struct __hc08_bits *)(&UCR2))->bit1 + #define TP2SIZ2 ((struct __hc08_bits *)(&UCR2))->bit2 + #define TP2SIZ3 ((struct __hc08_bits *)(&UCR2))->bit3 + #define RX2E ((struct __hc08_bits *)(&UCR2))->bit4 + #define TX2E ((struct __hc08_bits *)(&UCR2))->bit5 + #define STALL2 ((struct __hc08_bits *)(&UCR2))->bit6 + #define T2SEQ ((struct __hc08_bits *)(&UCR2))->bit7 + +_VOLDATA _UINT8 __at 0x1a UCR3; /* USB Control Register 3 */ + #define ENABLE1 ((struct __hc08_bits *)(&UCR3))->bit0 + #define ENABLE2 ((struct __hc08_bits *)(&UCR3))->bit1 + #define PULLEN ((struct __hc08_bits *)(&UCR3))->bit2 + #define ISTALL0 ((struct __hc08_bits *)(&UCR3))->bit4 + #define OSTALL0 ((struct __hc08_bits *)(&UCR3))->bit5 + #define TX1STR ((struct __hc08_bits *)(&UCR3))->bit6 + #define TX1ST ((struct __hc08_bits *)(&UCR3))->bit7 + +_VOLDATA _UINT8 __at 0x1b UCR4; /* USB Control Register 4 */ + #define FDM ((struct __hc08_bits *)(&UCR4))->bit0 + #define FDP ((struct __hc08_bits *)(&UCR4))->bit1 + #define FUSB0 ((struct __hc08_bits *)(&UCR4))->bit2 + +_VOLDATA _UINT8 __at 0x1c IOCR; /* IRQ Option Control Register */ + #define IRQPD ((struct __hc08_bits *)(&IOCR))->bit0 + #define PTE4IE ((struct __hc08_bits *)(&IOCR))->bit1 + #define PTE4IF ((struct __hc08_bits *)(&IOCR))->bit2 + +_VOLDATA _UINT8 __at 0x1d POCR; /* Port Option Control Register */ + #define PAP ((struct __hc08_bits *)(&POCR))->bit0 + #define PBP ((struct __hc08_bits *)(&POCR))->bit1 + #define PCP ((struct __hc08_bits *)(&POCR))->bit2 + #define PTE3P ((struct __hc08_bits *)(&POCR))->bit3 + #define PTE4P ((struct __hc08_bits *)(&POCR))->bit4 + #define PTDILDD ((struct __hc08_bits *)(&POCR))->bit5 + #define PTDLDD ((struct __hc08_bits *)(&POCR))->bit6 + #define PTE20P ((struct __hc08_bits *)(&POCR))->bit7 + +_VOLDATA _UINT8 __at 0x1e ISCR; /* IRQ Status and Control Register */ + #define MODE ((struct __hc08_bits *)(&ISCR))->bit0 + #define IMASK ((struct __hc08_bits *)(&ISCR))->bit1 + #define ACK ((struct __hc08_bits *)(&ISCR))->bit2 + #define IRQF ((struct __hc08_bits *)(&ISCR))->bit3 + +_VOLDATA _UINT8 __at 0x1f CONFIG; /* Configuration Register 1 */ +/* CONFIG1 is one-time writeable, so can't use bitfields */ + +_VOLDATA _UINT8 __at 0x20 UE0D0; /* USB Endpoint 0 Data Register 0 */ +_VOLDATA _UINT8 __at 0x21 UE0D1; /* USB Endpoint 0 Data Register 1 */ +_VOLDATA _UINT8 __at 0x22 UE0D2; /* USB Endpoint 0 Data Register 2 */ +_VOLDATA _UINT8 __at 0x23 UE0D3; /* USB Endpoint 0 Data Register 3 */ +_VOLDATA _UINT8 __at 0x24 UE0D4; /* USB Endpoint 0 Data Register 4 */ +_VOLDATA _UINT8 __at 0x25 UE0D5; /* USB Endpoint 0 Data Register 5 */ +_VOLDATA _UINT8 __at 0x26 UE0D6; /* USB Endpoint 0 Data Register 6 */ +_VOLDATA _UINT8 __at 0x27 UE0D7; /* USB Endpoint 0 Data Register 7 */ + +_VOLDATA _UINT8 __at 0x28 UE1D0; /* USB Endpoint 1 Data Register 0 */ +_VOLDATA _UINT8 __at 0x29 UE1D1; /* USB Endpoint 1 Data Register 1 */ +_VOLDATA _UINT8 __at 0x2a UE1D2; /* USB Endpoint 1 Data Register 2 */ +_VOLDATA _UINT8 __at 0x2b UE1D3; /* USB Endpoint 1 Data Register 3 */ +_VOLDATA _UINT8 __at 0x2c UE1D4; /* USB Endpoint 1 Data Register 4 */ +_VOLDATA _UINT8 __at 0x2d UE1D5; /* USB Endpoint 1 Data Register 5 */ +_VOLDATA _UINT8 __at 0x2e UE1D6; /* USB Endpoint 1 Data Register 6 */ +_VOLDATA _UINT8 __at 0x2f UE1D7; /* USB Endpoint 1 Data Register 7 */ + +_VOLDATA _UINT8 __at 0x30 UE2D0; /* USB Endpoint 2 Data Register 0 */ +_VOLDATA _UINT8 __at 0x31 UE2D1; /* USB Endpoint 2 Data Register 1 */ +_VOLDATA _UINT8 __at 0x32 UE2D2; /* USB Endpoint 2 Data Register 2 */ +_VOLDATA _UINT8 __at 0x33 UE2D3; /* USB Endpoint 2 Data Register 3 */ +_VOLDATA _UINT8 __at 0x34 UE2D4; /* USB Endpoint 2 Data Register 4 */ +_VOLDATA _UINT8 __at 0x35 UE2D5; /* USB Endpoint 2 Data Register 5 */ +_VOLDATA _UINT8 __at 0x36 UE2D6; /* USB Endpoint 2 Data Register 6 */ +_VOLDATA _UINT8 __at 0x37 UE2D7; /* USB Endpoint 2 Data Register 7 */ + +_VOLDATA _UINT8 __at 0x38 UADDR; /* USB Address Register */ + #define USBEN ((struct __hc08_bits *)(&UADDR))->bit7 + +_VOLDATA _UINT8 __at 0x39 UIR0; /* USB Interrupt Register 0 */ + #define RXD0IE ((struct __hc08_bits *)(&UIR0))->bit0 + #define TXD0IE ((struct __hc08_bits *)(&UIR0))->bit1 + #define TXD1IE ((struct __hc08_bits *)(&UIR0))->bit3 + #define RXD2IE ((struct __hc08_bits *)(&UIR0))->bit4 + #define TXD2IE ((struct __hc08_bits *)(&UIR0))->bit5 + #define SUSPND ((struct __hc08_bits *)(&UIR0))->bit6 + #define EOPIE ((struct __hc08_bits *)(&UIR0))->bit7 + +_VOLDATA _UINT8 __at 0x3a UIR1; /* USB Interrupt Register 1 */ + #define RXD0F ((struct __hc08_bits *)(&UIR1))->bit0 + #define TXD0F ((struct __hc08_bits *)(&UIR1))->bit1 + #define RESUMF ((struct __hc08_bits *)(&UIR1))->bit2 + #define TXD1F ((struct __hc08_bits *)(&UIR1))->bit3 + #define RXD2F ((struct __hc08_bits *)(&UIR1))->bit4 + #define TXD2F ((struct __hc08_bits *)(&UIR1))->bit5 + #define RSTF ((struct __hc08_bits *)(&UIR1))->bit6 + #define EOPF ((struct __hc08_bits *)(&UIR1))->bit7 + +_VOLDATA _UINT8 __at 0x3b UCR0; /* USB Control Register 0 */ + #define TP0SIZ0 ((struct __hc08_bits *)(&UCR0))->bit0 + #define TP0SIZ1 ((struct __hc08_bits *)(&UCR0))->bit1 + #define TP0SIZ2 ((struct __hc08_bits *)(&UCR0))->bit2 + #define TP0SIZ3 ((struct __hc08_bits *)(&UCR0))->bit3 + #define RX0E ((struct __hc08_bits *)(&UCR0))->bit4 + #define TX0E ((struct __hc08_bits *)(&UCR0))->bit5 + #define T0SEQ ((struct __hc08_bits *)(&UCR0))->bit7 + +_VOLDATA _UINT8 __at 0x3c UCR1; /* USB Control Register 1 */ + #define TP1SIZ0 ((struct __hc08_bits *)(&UCR1))->bit0 + #define TP1SIZ1 ((struct __hc08_bits *)(&UCR1))->bit1 + #define TP1SIZ2 ((struct __hc08_bits *)(&UCR1))->bit2 + #define TP1SIZ3 ((struct __hc08_bits *)(&UCR1))->bit3 + #define FRESUM ((struct __hc08_bits *)(&UCR1))->bit4 + #define TX1E ((struct __hc08_bits *)(&UCR1))->bit5 + #define STALL1 ((struct __hc08_bits *)(&UCR1))->bit6 + #define T1SEQ ((struct __hc08_bits *)(&UCR1))->bit7 + +_VOLDATA _UINT8 __at 0x3d USR0; /* USB Status Register 0 */ + #define RP0SIZ0 ((struct __hc08_bits *)(&USR0))->bit0 + #define RP0SIZ1 ((struct __hc08_bits *)(&USR0))->bit1 + #define RP0SIZ2 ((struct __hc08_bits *)(&USR0))->bit2 + #define RP0SIZ3 ((struct __hc08_bits *)(&USR0))->bit3 + #define SETUP ((struct __hc08_bits *)(&USR0))->bit6 + #define R0SEQ ((struct __hc08_bits *)(&USR0))->bit7 + +_VOLDATA _UINT8 __at 0x3e USR1; /* USB Status Register 1 */ + #define RP2SIZ0 ((struct __hc08_bits *)(&USR1))->bit0 + #define RP2SIZ1 ((struct __hc08_bits *)(&USR1))->bit1 + #define RP2SIZ2 ((struct __hc08_bits *)(&USR1))->bit2 + #define RP2SIZ3 ((struct __hc08_bits *)(&USR1))->bit3 + #define TXSTL ((struct __hc08_bits *)(&USR1))->bit4 + #define TXNAK ((struct __hc08_bits *)(&USR1))->bit5 + #define TXACK ((struct __hc08_bits *)(&USR1))->bit6 + #define R2SEQ ((struct __hc08_bits *)(&USR1))->bit7 + +_VOLXDATA _UINT8 __at 0xfe00 BSR; /* Break Status Register */ + #define SBSW ((struct __hc08_bits *)(&BSR))->bit1 + +_VOLXDATA _UINT8 __at 0xfe01 RSR; /* Reset Status Register */ + #define LVI ((struct __hc08_bits *)(&RSR))->bit1 + #define USB ((struct __hc08_bits *)(&RSR))->bit2 + #define ILAD ((struct __hc08_bits *)(&RSR))->bit3 + #define ILOP ((struct __hc08_bits *)(&RSR))->bit4 + #define COP ((struct __hc08_bits *)(&RSR))->bit5 + #define PIN ((struct __hc08_bits *)(&RSR))->bit6 + #define POR ((struct __hc08_bits *)(&RSR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe03 BFCR; /* Break Flag Control Register */ + #define BFCE ((struct __hc08_bits *)(&BFCR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe04 INT1; /* Interrupt Status Register 1 */ + #define IF1 ((struct __hc08_bits *)(&INT1))->bit2 + #define IF2 ((struct __hc08_bits *)(&INT1))->bit3 + #define IF3 ((struct __hc08_bits *)(&INT1))->bit4 + #define IF4 ((struct __hc08_bits *)(&INT1))->bit5 + #define IF5 ((struct __hc08_bits *)(&INT1))->bit6 + #define IF6 ((struct __hc08_bits *)(&INT1))->bit7 + +_VOLXDATA _UINT8 __at 0xfe08 FLCR; /* FLASH Control Register */ + #define PGM ((struct __hc08_bits *)(&FLCR))->bit0 + #define ERASE ((struct __hc08_bits *)(&FLCR))->bit1 + #define MASS ((struct __hc08_bits *)(&FLCR))->bit2 + #define HVEN ((struct __hc08_bits *)(&FLCR))->bit3 + +_VOLXDATA _UINT8 __at 0xfe09 FLBPR; /* FLASH Block Protect Register */ + #define BPR0 ((struct __hc08_bits *)(&FLBPR))->bit0 + #define BPR1 ((struct __hc08_bits *)(&FLBPR))->bit1 + #define BPR2 ((struct __hc08_bits *)(&FLBPR))->bit2 + #define BPR3 ((struct __hc08_bits *)(&FLBPR))->bit3 + #define BPR4 ((struct __hc08_bits *)(&FLBPR))->bit4 + #define BPR5 ((struct __hc08_bits *)(&FLBPR))->bit5 + #define BPR6 ((struct __hc08_bits *)(&FLBPR))->bit6 + #define BPR7 ((struct __hc08_bits *)(&FLBPR))->bit7 + +_VOLXDATA _UINT16 __at 0xfe0c BRK; /* Break Address High & Low Registers */ +_VOLXDATA _UINT8 __at 0xfe0c BRKH; /* Break Address High Register */ +_VOLXDATA _UINT8 __at 0xfe0d BRKL; /* Break Address Low Register */ + +_VOLXDATA _UINT8 __at 0xfe0e BRKSCR; /* Break Status and Control Register */ + #define BRKA ((struct __hc08_bits *)(&BRKSCR))->bit6 + #define BRKE ((struct __hc08_bits *)(&BRKSCR))->bit7 + +_VOLXDATA _UINT8 __at 0xffff COPCTL; /* COP Control Register */ + +#endif diff --git a/device/include/hc08/mc68hc908jkjl.h b/device/include/hc08/mc68hc908jkjl.h new file mode 100644 index 0000000..a668b25 --- /dev/null +++ b/device/include/hc08/mc68hc908jkjl.h @@ -0,0 +1,408 @@ +/*------------------------------------------------------------------------- + mc68hc908jkjl.h - register declarations for Motorola MC68HC908JK1/JK3/JL3/JK8/JL8 + + Copyright (C) 2004, Lucas Loizaga <lucas.loizaga AT ingenieria-inversa.com.ar> + + Based on mc68hc908qy.h, + Written By - Erik Petrich <epetrich AT users.sourceforge.net> (2003) + + This library 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 library 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 library; see the file COPYING. If not, write to the + Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, + MA 02110-1301, USA. + + As a special exception, if you link this library with other files, + some of which are compiled with SDCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License. This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. +-------------------------------------------------------------------------*/ + +#ifndef _MC68HC908JKJL_H +#define _MC68HC908JKJL_H + +#ifndef _UINT8 + #define _UINT8 unsigned char +#endif +#ifndef _UINT16 + #define _UINT16 unsigned int +#endif +#ifndef _VOLDATA + #define _VOLDATA volatile __data +#endif +#ifndef _VOLXDATA + #define _VOLXDATA volatile __xdata +#endif + +struct __hc08_bits +{ + unsigned int bit0:1; + unsigned int bit1:1; + unsigned int bit2:1; + unsigned int bit3:1; + unsigned int bit4:1; + unsigned int bit5:1; + unsigned int bit6:1; + unsigned int bit7:1; +}; + + +_VOLDATA _UINT8 __at 0x00 PTA; /* Port A Data Register */ +#define PORTA PTA /* Alias for PTA */ + #define PTA0 ((struct __hc08_bits *)(&PTA))->bit0 + #define PTA1 ((struct __hc08_bits *)(&PTA))->bit1 + #define PTA2 ((struct __hc08_bits *)(&PTA))->bit2 + #define PTA3 ((struct __hc08_bits *)(&PTA))->bit3 + #define PTA4 ((struct __hc08_bits *)(&PTA))->bit4 + #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5 + #define PTA6 ((struct __hc08_bits *)(&PTA))->bit6 + #define PTA7 ((struct __hc08_bits *)(&PTA))->bit7 + +_VOLDATA _UINT8 __at 0x01 PTB; /* Port B Data Register */ +#define PORTB PTB /* Alias for PTB */ + #define PTB0 ((struct __hc08_bits *)(&PTB))->bit0 + #define PTB1 ((struct __hc08_bits *)(&PTB))->bit1 + #define PTB2 ((struct __hc08_bits *)(&PTB))->bit2 + #define PTB3 ((struct __hc08_bits *)(&PTB))->bit3 + #define PTB4 ((struct __hc08_bits *)(&PTB))->bit4 + #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5 + #define PTB6 ((struct __hc08_bits *)(&PTB))->bit6 + #define PTB7 ((struct __hc08_bits *)(&PTB))->bit7 + +_VOLDATA _UINT8 __at 0x03 PTD; /* Port D Data Register */ +#define PORTD PTD /* Alias for PTD */ + #define PTD0 ((struct __hc08_bits *)(&PTD))->bit0 + #define PTD1 ((struct __hc08_bits *)(&PTD))->bit1 + #define PTD2 ((struct __hc08_bits *)(&PTD))->bit2 + #define PTD3 ((struct __hc08_bits *)(&PTD))->bit3 + #define PTD4 ((struct __hc08_bits *)(&PTD))->bit4 + #define PTD5 ((struct __hc08_bits *)(&PTD))->bit5 + #define PTD6 ((struct __hc08_bits *)(&PTD))->bit6 + #define PTD7 ((struct __hc08_bits *)(&PTD))->bit7 + +_VOLDATA _UINT8 __at 0x04 DDRA; /* Data Direction Register A */ + #define DDRA0 ((struct __hc08_bits *)(&DDRA))->bit0 + #define DDRA1 ((struct __hc08_bits *)(&DDRA))->bit1 + #define DDRA2 ((struct __hc08_bits *)(&DDRA))->bit2 + #define DDRA3 ((struct __hc08_bits *)(&DDRA))->bit3 + #define DDRA4 ((struct __hc08_bits *)(&DDRA))->bit4 + #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5 + #define DDRA6 ((struct __hc08_bits *)(&DDRA))->bit6 + #define DDRA7 ((struct __hc08_bits *)(&DDRA))->bit7 + +_VOLDATA _UINT8 __at 0x05 DDRB; /* Data Direction Register B */ + #define DDRB0 ((struct __hc08_bits *)(&DDRB))->bit0 + #define DDRB1 ((struct __hc08_bits *)(&DDRB))->bit1 + #define DDRB2 ((struct __hc08_bits *)(&DDRB))->bit2 + #define DDRB3 ((struct __hc08_bits *)(&DDRB))->bit3 + #define DDRB4 ((struct __hc08_bits *)(&DDRB))->bit4 + #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5 + #define DDRB6 ((struct __hc08_bits *)(&DDRB))->bit6 + #define DDRB7 ((struct __hc08_bits *)(&DDRB))->bit7 + +_VOLDATA _UINT8 __at 0x07 DDRD; /* Data Direction Register D */ + #define DDRD0 ((struct __hc08_bits *)(&DDRD))->bit0 + #define DDRD1 ((struct __hc08_bits *)(&DDRD))->bit1 + #define DDRD2 ((struct __hc08_bits *)(&DDRD))->bit2 + #define DDRD3 ((struct __hc08_bits *)(&DDRD))->bit3 + #define DDRD4 ((struct __hc08_bits *)(&DDRD))->bit4 + #define DDRD5 ((struct __hc08_bits *)(&DDRD))->bit5 + #define DDRD6 ((struct __hc08_bits *)(&DDRD))->bit6 + #define DDRD7 ((struct __hc08_bits *)(&DDRD))->bit7 + +_VOLDATA _UINT8 __at 0x08 PTE; /* Port E Data Register */ +#define PORTE PTE /* Alias for PTE */ + #define PTE0 ((struct __hc08_bits *)(&PTE))->bit0 + #define PTE1 ((struct __hc08_bits *)(&PTE))->bit1 + +_VOLDATA _UINT8 __at 0x0A PDCR; /* Port D Control Register */ + + #define PTDPU6 ((struct __hc08_bits *)(&PDCR))->bit0 + #define PTDPU7 ((struct __hc08_bits *)(&PDCR))->bit1 + #define SLOWD6 ((struct __hc08_bits *)(&PDCR))->bit2 + #define SLOWD7 ((struct __hc08_bits *)(&PDCR))->bit3 + +_VOLDATA _UINT8 __at 0x0C DDRE; /* Data Direction Register E */ + #define DDRE0 ((struct __hc08_bits *)(&DDRE))->bit0 + #define DDRE1 ((struct __hc08_bits *)(&DDRE))->bit1 + + +_VOLDATA _UINT8 __at 0x0D PTAPUE; /* Port A pull-up enables */ + #define PTAPUE0 ((struct __hc08_bits *)(&PTAPUE))->bit0 + #define PTAPUE1 ((struct __hc08_bits *)(&PTAPUE))->bit1 + #define PTAPUE2 ((struct __hc08_bits *)(&PTAPUE))->bit2 + #define PTAPUE3 ((struct __hc08_bits *)(&PTAPUE))->bit3 + #define PTAPUE4 ((struct __hc08_bits *)(&PTAPUE))->bit4 + #define PTAPUE5 ((struct __hc08_bits *)(&PTAPUE))->bit5 + #define PTAPUE6 ((struct __hc08_bits *)(&PTAPUE))->bit6 + #define PTA6EN ((struct __hc08_bits *)(&PTAPUE))->bit7 + +_VOLDATA _UINT8 __at 0x0E PTA7PUE; /* Port A pull-up enables */ + #define PTAPUE7 ((struct __hc08_bits *)(&PTA7PUE))->bit7 + +_VOLDATA _UINT8 __at 0x13 SCC1; /* SCI Control Register 1 */ + #define LOOPS ((struct __hc08_bits *)(&SCC1))->bit7 + #define ENSCI ((struct __hc08_bits *)(&SCC1))->bit6 + #define TXINV ((struct __hc08_bits *)(&SCC1))->bit5 + #define M ((struct __hc08_bits *)(&SCC1))->bit4 + #define WAKE ((struct __hc08_bits *)(&SCC1))->bit3 + #define ILTY ((struct __hc08_bits *)(&SCC1))->bit2 + #define PEN ((struct __hc08_bits *)(&SCC1))->bit1 + #define PTY ((struct __hc08_bits *)(&SCC1))->bit0 + + +_VOLDATA _UINT8 __at 0x14 SCC2; /* SCI Control Register 2 */ + #define SCTIE ((struct __hc08_bits *)(&SCC2))->bit7 + #define TCIE ((struct __hc08_bits *)(&SCC2))->bit6 + #define SCRIE ((struct __hc08_bits *)(&SCC2))->bit5 + #define ILIE ((struct __hc08_bits *)(&SCC2))->bit4 + #define TE ((struct __hc08_bits *)(&SCC2))->bit3 + #define RE ((struct __hc08_bits *)(&SCC2))->bit2 + #define WRU ((struct __hc08_bits *)(&SCC2))->bit1 + #define SBK ((struct __hc08_bits *)(&SCC2))->bit0 + +_VOLDATA _UINT8 __at 0x15 SCC3; /* SCI Control Register 3 */ + #define SCC3_R8 ((struct __hc08_bits *)(&SCC3))->bit7 + #define SCC3_TB ((struct __hc08_bits *)(&SCC3))->bit6 + #define DMARE ((struct __hc08_bits *)(&SCC3))->bit5 + #define DMATE ((struct __hc08_bits *)(&SCC3))->bit4 + #define ORIE ((struct __hc08_bits *)(&SCC3))->bit3 + #define NEIE ((struct __hc08_bits *)(&SCC3))->bit2 + #define FEIE ((struct __hc08_bits *)(&SCC3))->bit1 + #define PEIE ((struct __hc08_bits *)(&SCC3))->bit0 + +_VOLDATA _UINT8 __at 0x16 SCS1; /* SCI Status Register 1 */ + #define SCTE ((struct __hc08_bits *)(&SCS1))->bit7 + #define TC ((struct __hc08_bits *)(&SCS1))->bit6 + #define SCRF ((struct __hc08_bits *)(&SCS1))->bit5 + #define IDLE ((struct __hc08_bits *)(&SCS1))->bit4 + #define OR ((struct __hc08_bits *)(&SCS1))->bit3 + #define NF ((struct __hc08_bits *)(&SCS1))->bit2 + #define FE ((struct __hc08_bits *)(&SCS1))->bit1 + #define PE ((struct __hc08_bits *)(&SCS1))->bit0 + +_VOLDATA _UINT8 __at 0x17 SCS2; /* SCI Status Register 2 */ + #define RPF ((struct __hc08_bits *)(&SCS2))->bit0 + #define BKF ((struct __hc08_bits *)(&SCS2))->bit1 + /* Bits 2-7 not implemented */ + +_VOLDATA _UINT8 __at 0x18 SCDR; /* SCI Data Register */ + +_VOLDATA _UINT8 __at 0x19 SCBR; /* SCI Baud Rate Register */ + #define SCP1 ((struct __hc08_bits *)(&SCBR))->bit5 + #define SCP0 ((struct __hc08_bits *)(&SCBR))->bit4 + #define R ((struct __hc08_bits *)(&SCBR))->bit3 + #define SCR2 ((struct __hc08_bits *)(&SCBR))->bit2 + #define SCR1 ((struct __hc08_bits *)(&SCBR))->bit1 + #define SCR0 ((struct __hc08_bits *)(&SCBR))->bit0 + /*-- Bits 6 and 7 do not exist */ + + +_VOLDATA _UINT8 __at 0x1a KBSCR; /* Keyboard Status and Control Register */ + #define MODEK ((struct __hc08_bits *)(&KBSCR))->bit0 + #define IMASKK ((struct __hc08_bits *)(&KBSCR))->bit1 + #define ACKK ((struct __hc08_bits *)(&KBSCR))->bit2 + #define KEYF ((struct __hc08_bits *)(&KBSCR))->bit3 + /*-- Bits 4-7 do not exist */ + +_VOLDATA _UINT8 __at 0x1b KBIER; /* Keyboard Interrupt Enable Register */ + #define KBIE0 ((struct __hc08_bits *)(&KBIER))->bit0 + #define KBIE1 ((struct __hc08_bits *)(&KBIER))->bit1 + #define KBIE3 ((struct __hc08_bits *)(&KBIER))->bit3 + #define KBIE2 ((struct __hc08_bits *)(&KBIER))->bit2 + #define KBIE4 ((struct __hc08_bits *)(&KBIER))->bit4 + #define KBIE5 ((struct __hc08_bits *)(&KBIER))->bit5 + #define KBIE6 ((struct __hc08_bits *)(&KBIER))->bit6 + #define KBIE7 ((struct __hc08_bits *)(&KBIER))->bit7 + +_VOLDATA _UINT8 __at 0x1D INTSCR; /* IRQ status/control */ + #define IRQF1 ((struct __hc08_bits *)(&INTSCR))->bit3 + #define ACK1 ((struct __hc08_bits *)(&INTSCR))->bit2 + #define IMASK1 ((struct __hc08_bits *)(&INTSCR))->bit1 + #define MODE1 ((struct __hc08_bits *)(&INTSCR))->bit0 + /* Bits 4-7 unimplemented */ + +_VOLDATA _UINT8 __at 0x1e CONFIG2; /* Configuration Register 2 */ +/* CONFIG2 is one-time writeble, so can't use bitfields */ + +_VOLDATA _UINT8 __at 0x1f CONFIG1; /* Configuration Register 1 */ +/* CONFIG1 is one-time writeable, so can't use bitfields */ + +_VOLDATA _UINT8 __at 0x20 T1SC; /* TIM 1 Status and Control */ + #define PS0 ((struct __hc08_bits *)(&T1SC))->bit0 + #define PS1 ((struct __hc08_bits *)(&T1SC))->bit1 + #define PS2 ((struct __hc08_bits *)(&T1SC))->bit2 + #define TRST ((struct __hc08_bits *)(&T1SC))->bit4 + #define TSTOP ((struct __hc08_bits *)(&T1SC))->bit5 + #define TOIE ((struct __hc08_bits *)(&T1SC))->bit6 + #define TOF ((struct __hc08_bits *)(&T1SC))->bit7 + +_VOLDATA _UINT16 __at 0x21 T1CNT; /* TIM1 Counter High & Low Registers */ +_VOLDATA _UINT8 __at 0x21 T1CNTH; /* TIM1 Counter Register High */ +_VOLDATA _UINT8 __at 0x22 T1CNTL; /* TIM1 Counter Register Low */ + +_VOLDATA _UINT16 __at 0x23 T1MOD; /* TIM1 Counter Modulo High & Low Registers */ +_VOLDATA _UINT8 __at 0x23 T1MODH; /* TIM1 Counter Modulo Register High */ +_VOLDATA _UINT8 __at 0x24 T1MODL; /* TIM1 Counter Modulo Register Low */ + +_VOLDATA _UINT8 __at 0x25 T1SC0; /* TIM1 Channel 0 Status and Control Register */ + #define CH0MAX ((struct __hc08_bits *)(&T1SC0))->bit0 + #define TOV0 ((struct __hc08_bits *)(&T1SC0))->bit1 + #define ELS0A ((struct __hc08_bits *)(&T1SC0))->bit2 + #define ELS0B ((struct __hc08_bits *)(&T1SC0))->bit3 + #define MS0A ((struct __hc08_bits *)(&T1SC0))->bit4 + #define MS0B ((struct __hc08_bits *)(&T1SC0))->bit5 + #define CH0IE ((struct __hc08_bits *)(&T1SC0))->bit6 + #define CH0F ((struct __hc08_bits *)(&T1SC0))->bit7 + +_VOLDATA _UINT16 __at 0x26 T1CH0; /* TIM1 Channel 0 High & Low Registers */ +_VOLDATA _UINT8 __at 0x26 T1CH0H; /* TIM1 Channel 0 Register High */ +_VOLDATA _UINT8 __at 0x27 T1CH0L; /* TIM1 Channel 0 Register Low */ + +_VOLDATA _UINT8 __at 0x28 T1SC1; /* TIM1 Channel 1 Status and Control Register */ + #define CH1MAX ((struct __hc08_bits *)(&T1SC1))->bit0 + #define TOV1 ((struct __hc08_bits *)(&T1SC1))->bit1 + #define ELS1A ((struct __hc08_bits *)(&T1SC1))->bit2 + #define ELS1B ((struct __hc08_bits *)(&T1SC1))->bit3 + #define MS1A ((struct __hc08_bits *)(&T1SC1))->bit4 + #define CH1IE ((struct __hc08_bits *)(&T1SC1))->bit6 + #define CH1F ((struct __hc08_bits *)(&T1SC1))->bit7 + +_VOLDATA _UINT16 __at 0x29 T1CH1; /* TIM1 Channel 1 High & Low Registers */ +_VOLDATA _UINT8 __at 0x29 T1CH1H; /* TIM1 Channel 1 Register High */ +_VOLDATA _UINT8 __at 0x2A T1CH1L; /* TIM1 Channel 1 Register Low */ + +_VOLDATA _UINT8 __at 0x30 T2SC; /* TIM2 Status and Control Register */ + #define PS0_2 ((struct __hc08_bits *)(&T2SC))->bit0 + #define PS1_2 ((struct __hc08_bits *)(&T2SC0))->bit1 + #define PS2_2 ((struct __hc08_bits *)(&T2SC0))->bit2 + #define TRST_2 ((struct __hc08_bits *)(&T2SC0))->bit4 + #define TSTOP_2 ((struct __hc08_bits *)(&T2SC0))->bit5 + #define TOIE_2 ((struct __hc08_bits *)(&T2SC0))->bit6 + #define TOF_2 ((struct __hc08_bits *)(&T2SC0))->bit7 + +_VOLDATA _UINT16 __at 0x31 T2CNT; /* TIM2 Counter Registers */ +_VOLDATA _UINT8 __at 0x31 T2CNTH; /* TIM2 Counter Register High */ +_VOLDATA _UINT8 __at 0x32 T2CNTL; /* TIM2 Counter Register Low */ + + +_VOLDATA _UINT16 __at 0x33 T2MOD; /* TIM2 Counter Modulo Registers */ +_VOLDATA _UINT8 __at 0x33 T2MODH; /* TIM2 Counter Modulo Register High */ +_VOLDATA _UINT8 __at 0x34 T2MODL; /* TIM2 Counter Modulo Register Low */ + + +_VOLDATA _UINT8 __at 0x35 T2SC0; /* TIM2 Channel 0 Status and Control Register */ + #define CH0MAX_2 ((struct __hc08_bits *)(&T2SC0))->bit0 + #define TOV0_2 ((struct __hc08_bits *)(&T2SC0))->bit1 + #define ELS0A_2 ((struct __hc08_bits *)(&T2SC0))->bit2 + #define ELS0B_2 ((struct __hc08_bits *)(&T2SC0))->bit3 + #define MS0A_2 ((struct __hc08_bits *)(&T2SC0))->bit4 + #define CH0IE_2 ((struct __hc08_bits *)(&T2SC0))->bit6 + #define CH0F_2 ((struct __hc08_bits *)(&T2SC0))->bit7 + +_VOLDATA _UINT16 __at 0x36 T2CH0; /* TIM2 Channel 0 High & Low Registers */ +_VOLDATA _UINT8 __at 0x36 T2CH0H; /* TIM2 Channel 0 Register High */ +_VOLDATA _UINT8 __at 0x37 T2CH0L; /* TIM2 Channel 0 Register Low */ + +_VOLDATA _UINT8 __at 0x38 T2SC1; /* TIM2 Channel 1 Status and Control Register */ + #define CH1MAX_2 ((struct __hc08_bits *)(&T2SC1))->bit0 + #define TOV1_2 ((struct __hc08_bits *)(&T2SC1))->bit1 + #define ELS1A_2 ((struct __hc08_bits *)(&T2SC1))->bit2 + #define ELS1B_2 ((struct __hc08_bits *)(&T2SC1))->bit3 + #define MS1A_2 ((struct __hc08_bits *)(&T2SC1))->bit4 + #define CH1IE_2 ((struct __hc08_bits *)(&T2SC1))->bit6 + #define CH1F_2 ((struct __hc08_bits *)(&T2SC1))->bit7 + +_VOLDATA _UINT16 __at 0x39 T2CH1; /* TIM2 Channel 1 High & Low Registers */ +_VOLDATA _UINT8 __at 0x39 T2CH1H; /* TIM2 Channel 1 Register High */ +_VOLDATA _UINT8 __at 0x3a T2CH1L; /* TIM2 Channel 1 Register Low */ + + +_VOLDATA _UINT8 __at 0x3c ADSCR; /* Analog-to-Digital Status and Control Reg. */ + #define COCO ((struct __hc08_bits *)(&ADSCR))->bit7 + #define AIEN ((struct __hc08_bits *)(&ADSCR))->bit6 + #define ADCO ((struct __hc08_bits *)(&ADSCR))->bit5 + #define ADCH4 ((struct __hc08_bits *)(&ADSCR))->bit4 + #define ADCH3 ((struct __hc08_bits *)(&ADSCR))->bit3 + #define ADCH2 ((struct __hc08_bits *)(&ADSCR))->bit2 + #define ADCH1 ((struct __hc08_bits *)(&ADSCR))->bit1 + #define ADCH0 ((struct __hc08_bits *)(&ADSCR))->bit0 + +_VOLDATA _UINT8 __at 0x3d ADR; /* Analog-to-Digital Data Register */ + +_VOLDATA _UINT8 __at 0x3e ADCLK; /* Analog-to-Digital Clock */ + #define ADIV2 ((struct __hc08_bits *)(&ADCLK))->bit7 + #define ADIV1 ((struct __hc08_bits *)(&ADCLK))->bit6 + #define ADIV0 ((struct __hc08_bits *)(&ADCLK))->bit5 + /* Bits 0-4 unimplemented */ + +_VOLXDATA _UINT8 __at 0xfe00 BSR; /* SIM Break Status Register */ + #define SBSW ((struct __hc08_bits *)(&BSR))->bit1 + +_VOLXDATA _UINT8 __at 0xfe01 RSR; /* SIM Reset Status Register */ + #define LVI ((struct __hc08_bits *)(&RSR))->bit1 + #define MODRST ((struct __hc08_bits *)(&RSR))->bit2 + #define ILAD ((struct __hc08_bits *)(&RSR))->bit3 + #define ILOP ((struct __hc08_bits *)(&RSR))->bit4 + #define COP ((struct __hc08_bits *)(&RSR))->bit5 + #define PIN ((struct __hc08_bits *)(&RSR))->bit6 + #define POR ((struct __hc08_bits *)(&RSR))->bit7 + /* Bit 0 unimplemented */ + +_VOLXDATA _UINT8 __at 0xfe02 SUBAR; /* SIM Upper Byte Address */ + +_VOLXDATA _UINT8 __at 0xfe03 BFCR; /* SIM Break Flag Control Register */ + #define BFCE ((struct __hc08_bits *)(&BFCR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe04 INT1; /* Interrupt Status Register 1 */ + #define IF1 ((struct __hc08_bits *)(&INT1))->bit2 + #define IF3 ((struct __hc08_bits *)(&INT1))->bit4 + #define IF4 ((struct __hc08_bits *)(&INT1))->bit5 + #define IF5 ((struct __hc08_bits *)(&INT1))->bit6 + + +_VOLXDATA _UINT8 __at 0xfe05 INT2; /* Interrupt Status Register 2 */ + #define IF14 ((struct __hc08_bits *)(&INT2))->bit7 + +_VOLXDATA _UINT8 __at 0xfe06 INT3; /* Interrupt Status Register 3 */ + #define IF16 ((struct __hc08_bits *)(&INT3))->bit1 + #define IF15 ((struct __hc08_bits *)(&INT3))->bit0 + +_VOLXDATA _UINT8 __at 0xfe08 FLCR; /* FLASH Control Register */ + #define PGM ((struct __hc08_bits *)(&FLCR))->bit0 + #define ERASE ((struct __hc08_bits *)(&FLCR))->bit1 + #define MASS ((struct __hc08_bits *)(&FLCR))->bit2 + #define HVEN ((struct __hc08_bits *)(&FLCR))->bit3 + +_VOLXDATA _UINT8 __at 0xfe09 FLBPR; /* Flash Block Protect Register */ + #define BPR0 ((struct __hc08_bits *)(&FLBPR))->bit0 + #define BPR1 ((struct __hc08_bits *)(&FLBPR))->bit1 + #define BPR2 ((struct __hc08_bits *)(&FLBPR))->bit2 + #define BPR3 ((struct __hc08_bits *)(&FLBPR))->bit3 + #define BPR4 ((struct __hc08_bits *)(&FLBPR))->bit4 + #define BPR5 ((struct __hc08_bits *)(&FLBPR))->bit5 + #define BPR6 ((struct __hc08_bits *)(&FLBPR))->bit6 + #define BPR7 ((struct __hc08_bits *)(&FLBPR))->bit7 + +_VOLXDATA _UINT16 __at 0xfe0C BRK; /* Break Address High & Low Registers */ +_VOLXDATA _UINT8 __at 0xfe0C BRKH; /* Break Address High Register */ +_VOLXDATA _UINT8 __at 0xfe0D BRKL; /* Break Address Low Register */ + +_VOLXDATA _UINT8 __at 0xfe0e BRKSCR; /* Break Status and Control Register */ + #define BRKA ((struct __hc08_bits *)(&BRKSCR))->bit6 + #define BRKE ((struct __hc08_bits *)(&BRKSCR))->bit7 + +_VOLXDATA _UINT8 __at 0xffff COPCTL; /* COP Control Register */ + +#endif diff --git a/device/include/hc08/mc68hc908qy.h b/device/include/hc08/mc68hc908qy.h new file mode 100644 index 0000000..6da48b9 --- /dev/null +++ b/device/include/hc08/mc68hc908qy.h @@ -0,0 +1,261 @@ +/*------------------------------------------------------------------------- + mc68hc908qy.h - Register Declarations for Motorola MC68HC908QY & MC68HC908QT + + Copyright (C) 2003, Erik Petrich epetrich@users.sourceforge.net + + This library 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 library 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 library; see the file COPYING. If not, write to the + Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, + MA 02110-1301, USA. + + As a special exception, if you link this library with other files, + some of which are compiled with SDCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License. This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. +-------------------------------------------------------------------------*/ + +#ifndef _MC68HC908QY_H +#define _MC68HC908QY_H + +#ifndef _UINT8 + #define _UINT8 unsigned char +#endif +#ifndef _UINT16 + #define _UINT16 unsigned int +#endif +#ifndef _VOLDATA + #define _VOLDATA volatile __data +#endif +#ifndef _VOLXDATA + #define _VOLXDATA volatile __xdata +#endif + +struct __hc08_bits +{ + unsigned int bit0:1; + unsigned int bit1:1; + unsigned int bit2:1; + unsigned int bit3:1; + unsigned int bit4:1; + unsigned int bit5:1; + unsigned int bit6:1; + unsigned int bit7:1; +}; + + +_VOLDATA _UINT8 __at 0x00 PTA; /* Port A Data Register */ + #define PTA0 ((struct __hc08_bits *)(&PTA))->bit0 + #define PTA1 ((struct __hc08_bits *)(&PTA))->bit1 + #define PTA2 ((struct __hc08_bits *)(&PTA))->bit2 + #define PTA3 ((struct __hc08_bits *)(&PTA))->bit3 + #define PTA4 ((struct __hc08_bits *)(&PTA))->bit4 + #define PTA5 ((struct __hc08_bits *)(&PTA))->bit5 + #define AWUL ((struct __hc08_bits *)(&PTA))->bit6 + +_VOLDATA _UINT8 __at 0x01 PTB; /* Port B Data Register */ + #define PTB0 ((struct __hc08_bits *)(&PTB))->bit0 + #define PTB1 ((struct __hc08_bits *)(&PTB))->bit1 + #define PTB2 ((struct __hc08_bits *)(&PTB))->bit2 + #define PTB3 ((struct __hc08_bits *)(&PTB))->bit3 + #define PTB4 ((struct __hc08_bits *)(&PTB))->bit4 + #define PTB5 ((struct __hc08_bits *)(&PTB))->bit5 + #define PTB6 ((struct __hc08_bits *)(&PTB))->bit6 + #define PTB7 ((struct __hc08_bits *)(&PTB))->bit7 + +_VOLDATA _UINT8 __at 0x04 DDRA; /* Data Direction Register A */ + #define DDRA0 ((struct __hc08_bits *)(&DDRA))->bit0 + #define DDRA1 ((struct __hc08_bits *)(&DDRA))->bit1 + #define DDRA3 ((struct __hc08_bits *)(&DDRA))->bit3 + #define DDRA4 ((struct __hc08_bits *)(&DDRA))->bit4 + #define DDRA5 ((struct __hc08_bits *)(&DDRA))->bit5 + +_VOLDATA _UINT8 __at 0x05 DDRB; /* Data Direction Register B */ + #define DDRB0 ((struct __hc08_bits *)(&DDRB))->bit0 + #define DDRB1 ((struct __hc08_bits *)(&DDRB))->bit1 + #define DDRB2 ((struct __hc08_bits *)(&DDRB))->bit2 + #define DDRB3 ((struct __hc08_bits *)(&DDRB))->bit3 + #define DDRB4 ((struct __hc08_bits *)(&DDRB))->bit4 + #define DDRB5 ((struct __hc08_bits *)(&DDRB))->bit5 + #define DDRB6 ((struct __hc08_bits *)(&DDRB))->bit6 + #define DDRB7 ((struct __hc08_bits *)(&DDRB))->bit7 + +_VOLDATA _UINT8 __at 0x0b PTAPUE; /* Port A Input Pullup Enable Register */ + #define PTAPUE0 ((struct __hc08_bits *)(&PTAPUE))->bit0 + #define PTAPUE1 ((struct __hc08_bits *)(&PTAPUE))->bit1 + #define PTAPUE2 ((struct __hc08_bits *)(&PTAPUE))->bit2 + #define PTAPUE3 ((struct __hc08_bits *)(&PTAPUE))->bit3 + #define PTAPUE4 ((struct __hc08_bits *)(&PTAPUE))->bit4 + #define PTAPUE5 ((struct __hc08_bits *)(&PTAPUE))->bit5 + #define OSC2EN ((struct __hc08_bits *)(&PTAPUE))->bit7 + +_VOLDATA _UINT8 __at 0x0c PTBPUE; /* Port B Input Pullup Enable Register */ + #define PTBPUE0 ((struct __hc08_bits *)(&PTBPUE))->bit0 + #define PTBPUE1 ((struct __hc08_bits *)(&PTBPUE))->bit1 + #define PTBPUE2 ((struct __hc08_bits *)(&PTBPUE))->bit2 + #define PTBPUE3 ((struct __hc08_bits *)(&PTBPUE))->bit3 + #define PTBPUE4 ((struct __hc08_bits *)(&PTBPUE))->bit4 + #define PTBPUE5 ((struct __hc08_bits *)(&PTBPUE))->bit5 + #define PTBPUE6 ((struct __hc08_bits *)(&PTBPUE))->bit6 + #define PTBPUE7 ((struct __hc08_bits *)(&PTBPUE))->bit7 + +_VOLDATA _UINT8 __at 0x1a KBSCR; /* Keyboard Status and Control Register */ + #define MODEK ((struct __hc08_bits *)(&KBSCR))->bit0 + #define IMASKK ((struct __hc08_bits *)(&KBSCR))->bit1 + #define ACKK ((struct __hc08_bits *)(&KBSCR))->bit2 + #define KEYF ((struct __hc08_bits *)(&KBSCR))->bit3 + +_VOLDATA _UINT8 __at 0x1b KBIER; /* Keyboard Interrupt Enable Register */ + #define KBIE0 ((struct __hc08_bits *)(&KBIER))->bit0 + #define KBIE1 ((struct __hc08_bits *)(&KBIER))->bit1 + #define KBIE2 ((struct __hc08_bits *)(&KBIER))->bit2 + #define KBIE3 ((struct __hc08_bits *)(&KBIER))->bit3 + #define KBIE4 ((struct __hc08_bits *)(&KBIER))->bit4 + #define KBIE5 ((struct __hc08_bits *)(&KBIER))->bit5 + #define AWUIE ((struct __hc08_bits *)(&KBIER))->bit6 + +_VOLDATA _UINT8 __at 0x1d INTSCR; /* IRQ Status and Control Register */ + #define MODE1 ((struct __hc08_bits *)(&INTSCR))->bit0 + #define IMASK1 ((struct __hc08_bits *)(&INTSCR))->bit1 + #define ACK1 ((struct __hc08_bits *)(&INTSCR))->bit2 + #define IRQF1 ((struct __hc08_bits *)(&INTSCR))->bit3 + +_VOLDATA _UINT8 __at 0x1e CONFIG2; /* Configuration Register 2 */ +/* CONFIG2 is one-time writeable, so can't use bitfields */ + +_VOLDATA _UINT8 __at 0x1f CONFIG1; /* Configuration Register 1 */ +/* CONFIG1 is one-time writeable, so can't use bitfields */ + +_VOLDATA _UINT8 __at 0x20 TSC; /* TIM Status and Control */ + #define PS0 ((struct __hc08_bits *)(&TSC))->bit0 + #define PS1 ((struct __hc08_bits *)(&TSC))->bit1 + #define PS2 ((struct __hc08_bits *)(&TSC))->bit2 + #define TRST ((struct __hc08_bits *)(&TSC))->bit4 + #define TSTOP ((struct __hc08_bits *)(&TSC))->bit5 + #define TOIE ((struct __hc08_bits *)(&TSC))->bit6 + #define TOF ((struct __hc08_bits *)(&TSC))->bit7 + +_VOLDATA _UINT8 __at 0x21 TCNTH; /* TIM Counter Register High */ +_VOLDATA _UINT8 __at 0x22 TCNTL; /* TIM Counter Register Low */ +_VOLDATA _UINT16 __at 0x21 TCNT; /* TIM Counter High & Low Registers */ + +_VOLDATA _UINT8 __at 0x23 TMODH; /* TIM Counter Modulo Register High */ +_VOLDATA _UINT8 __at 0x24 TMODL; /* TIM Counter Modulo Register Low */ +_VOLDATA _UINT16 __at 0x23 TMOD; /* TIM Counter Modulo High & Low Registers */ + +_VOLDATA _UINT8 __at 0x25 TSC0; /* TIM Channel 0 Status and Control Register */ + #define CH0MAX ((struct __hc08_bits *)(&TSC0))->bit0 + #define TOV0 ((struct __hc08_bits *)(&TSC0))->bit1 + #define ELS0A ((struct __hc08_bits *)(&TSC0))->bit2 + #define ELS0B ((struct __hc08_bits *)(&TSC0))->bit3 + #define MS0A ((struct __hc08_bits *)(&TSC0))->bit4 + #define MS0B ((struct __hc08_bits *)(&TSC0))->bit5 + #define CH0IE ((struct __hc08_bits *)(&TSC0))->bit6 + #define CH0F ((struct __hc08_bits *)(&TSC0))->bit7 + +_VOLDATA _UINT8 __at 0x26 TCH0H; /* TIM Channel 0 Register High */ +_VOLDATA _UINT8 __at 0x27 TCH0L; /* TIM Channel 0 Register Low */ +_VOLDATA _UINT16 __at 0x26 TCH0; /* TIM Channel 0 High & Low Registers */ + +_VOLDATA _UINT8 __at 0x28 TSC1; /* TIM Channel 1 Status and Control Register */ + #define CH1MAX ((struct __hc08_bits *)(&TSC1))->bit0 + #define TOV1 ((struct __hc08_bits *)(&TSC1))->bit1 + #define ELS1A ((struct __hc08_bits *)(&TSC1))->bit2 + #define ELS1B ((struct __hc08_bits *)(&TSC1))->bit3 + #define MS1A ((struct __hc08_bits *)(&TSC1))->bit4 + #define MS1B ((struct __hc08_bits *)(&TSC1))->bit5 + #define CH1IE ((struct __hc08_bits *)(&TSC1))->bit6 + #define CH1F ((struct __hc08_bits *)(&TSC1))->bit7 + +_VOLDATA _UINT8 __at 0x29 TCH1H; /* TIM Channel 1 Register High */ +_VOLDATA _UINT8 __at 0x2a TCH1L; /* TIM Channel 1 Register Low */ +_VOLDATA _UINT16 __at 0x29 TCH1; /* TIM Channel 1 High & Low Registers */ + +_VOLDATA _UINT8 __at 0x36 OSCSTAT; /* Oscillator Status Register */ + #define ECGST ((struct __hc08_bits *)(&OSCSTAT))->bit0 + #define ECGON ((struct __hc08_bits *)(&OSCSTAT))->bit1 + +_VOLDATA _UINT8 __at 0x38 OSCTRIM; /* Oscillator Trim Register */ + +_VOLDATA _UINT8 __at 0x3c ADSCR; /* ADC Status and Control Register */ + #define CH0 ((struct __hc08_bits *)(&ADSCR))->bit0 + #define CH1 ((struct __hc08_bits *)(&ADSCR))->bit1 + #define CH2 ((struct __hc08_bits *)(&ADSCR))->bit2 + #define CH3 ((struct __hc08_bits *)(&ADSCR))->bit3 + #define CH4 ((struct __hc08_bits *)(&ADSCR))->bit4 + #define ADC0 ((struct __hc08_bits *)(&ADSCR))->bit5 + #define AIEN ((struct __hc08_bits *)(&ADSCR))->bit6 + #define COCO ((struct __hc08_bits *)(&ADSCR))->bit7 + +_VOLDATA _UINT8 __at 0x3e ADR; /* ADC Data Register */ + +_VOLDATA _UINT8 __at 0x3f ADICLK; /* ADS Input Clock Register */ + #define ADIV0 ((struct __hc08_bits *)(&ADICLK))->bit5 + #define ADIV1 ((struct __hc08_bits *)(&ADICLK))->bit6 + #define ADIV2 ((struct __hc08_bits *)(&ADICLK))->bit7 + +_VOLXDATA _UINT8 __at 0xfe00 BSR; /* Break Status Register */ + #define SBSW ((struct __hc08_bits *)(&BSR))->bit1 + +_VOLXDATA _UINT8 __at 0xfe01 SRSR; /* SIM Reset Status Register */ + #define LVI ((struct __hc08_bits *)(&SRSR))->bit1 + #define MODRST ((struct __hc08_bits *)(&SRSR))->bit2 + #define ILAD ((struct __hc08_bits *)(&SRSR))->bit3 + #define ILOP ((struct __hc08_bits *)(&SRSR))->bit4 + #define COP ((struct __hc08_bits *)(&SRSR))->bit5 + #define PIN ((struct __hc08_bits *)(&SRSR))->bit6 + #define POR ((struct __hc08_bits *)(&SRSR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe02 BRKAR; /* Break Auxilliary Register */ + #define BDCOP ((struct __hc08_bits *)(&BRKAR))->bit0 + +_VOLXDATA _UINT8 __at 0xfe03 BFCF; /* Break Flag Control Register */ + #define BFCF ((struct __hc08_bits *)(&BFCF))->bit7 + +_VOLXDATA _UINT8 __at 0xfe04 INT1; /* Interrupt Status Register 1 */ + #define IF1 ((struct __hc08_bits *)(&INT1))->bit2 + #define IF3 ((struct __hc08_bits *)(&INT1))->bit4 + #define IF4 ((struct __hc08_bits *)(&INT1))->bit5 + #define IF5 ((struct __hc08_bits *)(&INT1))->bit6 + +_VOLXDATA _UINT8 __at 0xfe05 INT2; /* Interrupt Status Register 2 */ + #define IF14 ((struct __hc08_bits *)(&INT2))->bit7 + +_VOLXDATA _UINT8 __at 0xfe06 INT3; /* Interrupt Status Register 3 */ + #define IF15 ((struct __hc08_bits *)(&INT3))->bit0 + +_VOLXDATA _UINT8 __at 0xfe08 FLCR; /* FLASH Control Register */ + #define PGM ((struct __hc08_bits *)(&FLCR))->bit0 + #define ERASE ((struct __hc08_bits *)(&FLCR))->bit1 + #define MASS ((struct __hc08_bits *)(&FLCR))->bit2 + #define HVEN ((struct __hc08_bits *)(&FLCR))->bit3 + +_VOLXDATA _UINT8 __at 0xfe09 BRKH; /* Break Address High Register */ +_VOLXDATA _UINT8 __at 0xfe0a BRKL; /* Break Address Low Register */ +_VOLXDATA _UINT16 __at 0xfe09 BRK; /* Break Address High & Low Registers */ + +_VOLXDATA _UINT8 __at 0xfe0b BRKSCR; /* Break Status and Control Register */ + #define BRKA ((struct __hc08_bits *)(&BRKSCR))->bit6 + #define BRKE ((struct __hc08_bits *)(&BRKSCR))->bit7 + +_VOLXDATA _UINT8 __at 0xfe0c LVISR; /* LVI Status Register */ + #define LVIOUT ((struct __hc08_bits *)(&LVISR))->bit7 + +_VOLXDATA _UINT8 __at 0xffbe FLBPR; /* FLASH Block Protect Register */ +_VOLXDATA _UINT8 __at 0xffc0 OSCTRIMVAL; /* Oscillator Trim Value */ +_VOLXDATA _UINT8 __at 0xffff COPCTL; /* COP Control Register */ + + +#endif + |
