ports_def.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _M68HC11_PORTS_DEF_H
00022 #define _M68HC11_PORTS_DEF_H
00023
00024
00025 #define M6811_S_BIT 0x80
00026 #define M6811_X_BIT 0x40
00027 #define M6811_H_BIT 0x20
00028 #define M6811_I_BIT 0x10
00029 #define M6811_N_BIT 0x08
00030 #define M6811_Z_BIT 0x04
00031 #define M6811_V_BIT 0x02
00032 #define M6811_C_BIT 0x01
00033
00034 #ifdef M6811_FAMILY_F1
00035 # include <asm-m68hc11/ports_def_F1.h>
00036 #else
00037 # include <asm-m68hc11/ports_def_E.h>
00038 #endif
00039
00040
00041
00042 extern volatile unsigned char _io_ports[];
00043
00044 #endif
00045
|