亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? datapage.c

?? 串口通信 使用freescale單片機c語言編寫
?? C
?? 第 1 頁 / 共 5 頁
字號:
/******************************************************************************
  FILE        : datapage.c
  PURPOSE     : paged data access runtime routines
  MACHINE     : Freescale 68HC12 (Target)
  LANGUAGE    : ANSI-C
  HISTORY     : 21.7.96 first version created
******************************************************************************/

#include "hidef.h"

#include "non_bank.sgm"
#include "runtime.sgm"

#ifndef __HCS12X__ /* it's different for the HCS12X. See the text below at the #else // __HCS12X__ */

/*
   According to the -Cp option of the compiler the
   __DPAGE__, __PPAGE__ and __EPAGE__ macros are defined.
   If none of them is given as argument, then no page accesses should occur and
   this runtime routine should not be used !
   To be on the save side, the runtime routines are created anyway.
   If some of the -Cp options are given an adapted versions which only covers the
   needed cases is produced.
*/

/* if no compiler option -Cp is given, it is assumed that all possible are given : */

/* Compile with option -DHCS12 to activate this code */
#if defined(HCS12) || defined(_HCS12) || defined(__HCS12__) /* HCS12 family has PPAGE register only at 0x30 */
#define PPAGE_ADDR (0x30+REGISTER_BASE)
#ifndef __PPAGE__ /* may be set already by option -CPPPAGE */
#define __PPAGE__
#endif
/* Compile with option -DDG128 to activate this code */
#elif defined DG128 /* HC912DG128 derivative has PPAGE register only at 0xFF */
#define PPAGE_ADDR (0xFF+REGISTER_BASE)
#ifndef __PPAGE__ /* may be set already by option -CPPPAGE */
#define __PPAGE__
#endif
#elif defined(HC812A4)
/* all setting default to A4 already */
#endif


#if !defined(__EPAGE__) && !defined(__PPAGE__) && !defined(__DPAGE__)
/* as default use all page registers */
#define __DPAGE__
#define __EPAGE__
#define __PPAGE__
#endif

/* modify the following defines to your memory configuration */

#define EPAGE_LOW_BOUND   0x400u
#define EPAGE_HIGH_BOUND  0x7ffu

#define DPAGE_LOW_BOUND   0x7000u
#define DPAGE_HIGH_BOUND  0x7fffu

#define PPAGE_LOW_BOUND   (DPAGE_HIGH_BOUND+1)
#define PPAGE_HIGH_BOUND  0xBFFFu

#define REGISTER_BASE      0x0u
#ifndef DPAGE_ADDR
#define DPAGE_ADDR        (0x34u+REGISTER_BASE)
#endif
#ifndef EPAGE_ADDR
#define EPAGE_ADDR        (0x36u+REGISTER_BASE)
#endif
#ifndef PPAGE_ADDR
#define PPAGE_ADDR        (0x35u+REGISTER_BASE)
#endif

/*
  The following parts about the defines are assumed in the code of _GET_PAGE_REG :
  - the memory region controlled by DPAGE is above the area controlled by the EPAGE and
    below the area controlled by the PPAGE.
  - the lower bound of the PPAGE area is equal to be the higher bound of the DPAGE area + 1
*/
#if EPAGE_LOW_BOUND >= EPAGE_HIGH_BOUND || EPAGE_HIGH_BOUND >= DPAGE_LOW_BOUND || DPAGE_LOW_BOUND >= DPAGE_HIGH_BOUND || DPAGE_HIGH_BOUND >= PPAGE_LOW_BOUND || PPAGE_LOW_BOUND >= PPAGE_HIGH_BOUND
#error /* please adapt _GET_PAGE_REG for this non default page configuration */
#endif

#if DPAGE_HIGH_BOUND+1 != PPAGE_LOW_BOUND
#error /* please adapt _GET_PAGE_REG for this non default page configuration */
#endif


/* this module does either control if any access is in the bounds of the specified page or */
/* ,if only one page is specified, just use this page. */
/* This behavior is controlled by the define USE_SEVERAL_PAGES. */
/* If !USE_SEVERAL_PAGES does increase the performance significantly */
/* NOTE : When !USE_SEVERAL_PAGES, the page is also set for accesses outside of the area controlled */
/*        by this single page. But this is usually no problem because the page is set again before any other access */

#if !defined(__DPAGE__) && !defined(__EPAGE__) && !defined(__PPAGE__)
/* no page at all is specified */
/* only specifying the right pages will speed up these functions a lot */
#define USE_SEVERAL_PAGES 1
#elif defined(__DPAGE__) && defined(__EPAGE__) || defined(__DPAGE__) && defined(__PPAGE__) || defined(__EPAGE__) && defined(__PPAGE__)
/* more than one page register is used */
#define USE_SEVERAL_PAGES 1
#else

#define USE_SEVERAL_PAGES 0

#if defined(__DPAGE__) /* check which pages are used  */
#define PAGE_ADDR PPAGE_ADDR
#elif defined(__EPAGE__)
#define PAGE_ADDR EPAGE_ADDR
#elif defined(__PPAGE__)
#define PAGE_ADDR PPAGE_ADDR
#else /* we dont know which page, decide it at runtime */
#error /* must not happen */
#endif

#endif


#if USE_SEVERAL_PAGES /* only needed for several pages support */
/*--------------------------- _GET_PAGE_REG --------------------------------
  Runtime routine to detect the right register depending on the 16 bit offset part
  of an address.
  This function is only used by the functions below.

  Depending on the compiler options -Cp different versions of _GET_PAGE_REG are produced.

  Arguments :
  - Y : offset part of an address

  Result :
  if address Y is controlled by a page register :
  - X : address of page register if Y is controlled by an page register
  - Zero flag cleared
  - all other registers remain unchanged

  if address Y is not controlled by a page register :
  - Zero flag is set
  - all registers remain unchanged

  --------------------------- _GET_PAGE_REG ----------------------------------*/

#if defined(__DPAGE__)

#ifdef __cplusplus
extern "C"
#endif
#pragma NO_ENTRY
#pragma NO_EXIT
#pragma NO_FRAME

static void NEAR _GET_PAGE_REG(void) { /*lint -esym(528, _GET_PAGE_REG) used in asm code */
  __asm {
L_DPAGE:
        CPY     #DPAGE_LOW_BOUND  ;// test of lower bound of DPAGE
#if defined(__EPAGE__)
        BLO     L_EPAGE           ;// EPAGE accesses are possible
#else
        BLO     L_NOPAGE          ;// no paged memory below accesses
#endif
        CPY     #DPAGE_HIGH_BOUND ;// test of higher bound DPAGE/lower bound PPAGE
#if defined(__PPAGE__)
        BHI     L_PPAGE           ;// EPAGE accesses are possible
#else
        BHI     L_NOPAGE          ;// no paged memory above accesses
#endif
FOUND_DPAGE:
        LDX     #DPAGE_ADDR       ;// load page register address and clear zero flag
        RTS

#if defined(__PPAGE__)
L_PPAGE:
        CPY     #PPAGE_HIGH_BOUND ;// test of higher bound of PPAGE
        BHI     L_NOPAGE
FOUND_PPAGE:
        LDX     #PPAGE_ADDR       ;// load page register address and clear zero flag
        RTS
#endif

#if defined(__EPAGE__)
L_EPAGE:
        CPY     #EPAGE_LOW_BOUND  ;// test of lower bound of EPAGE
        BLO     L_NOPAGE
        CPY     #EPAGE_HIGH_BOUND ;// test of higher bound of EPAGE
        BHI     L_NOPAGE

FOUND_EPAGE:
        LDX     #EPAGE_ADDR       ;// load page register address and clear zero flag
        RTS
#endif

L_NOPAGE:
        ORCC    #0x04             ;// sets zero flag
        RTS
  }
}

#else /* !defined(__DPAGE__) */

#if defined( __PPAGE__ )

#ifdef __cplusplus
extern "C"
#endif
#pragma NO_ENTRY
#pragma NO_EXIT
#pragma NO_FRAME

static void NEAR _GET_PAGE_REG(void) {	/*lint -esym(528, _GET_PAGE_REG) used in asm code */
  __asm {
L_PPAGE:
        CPY     #PPAGE_LOW_BOUND  ;// test of lower bound of PPAGE
#if defined( __EPAGE__ )
        BLO     L_EPAGE
#else
        BLO     L_NOPAGE          ;// no paged memory below
#endif
        CPY     #PPAGE_HIGH_BOUND ;// test of higher bound PPAGE
        BHI     L_NOPAGE
FOUND_PPAGE:
        LDX     #PPAGE_ADDR       ;// load page register address and clear zero flag
        RTS
#if defined( __EPAGE__ )
L_EPAGE:
        CPY     #EPAGE_LOW_BOUND  ;// test of lower bound of EPAGE
        BLO     L_NOPAGE
        CPY     #EPAGE_HIGH_BOUND ;// test of higher bound of EPAGE
        BHI     L_NOPAGE
FOUND_EPAGE:
        LDX     #EPAGE_ADDR       ;// load page register address and clear zero flag
        RTS
#endif

L_NOPAGE:                         ;// not in any allowed page area
                                  ;// its a far access to a non paged variable
        ORCC #0x04                ;// sets zero flag
        RTS
  }
}

#else /* !defined(__DPAGE__ ) && !defined( __PPAGE__) */
#if defined(__EPAGE__)

#ifdef __cplusplus
extern "C"
#endif
#pragma NO_ENTRY
#pragma NO_EXIT
#pragma NO_FRAME

static void NEAR _GET_PAGE_REG(void) { /*lint -esym(528, _GET_PAGE_REG) used in asm code */
  __asm {
L_EPAGE:
        CPY     #EPAGE_LOW_BOUND  ;// test of lower bound of EPAGE
        BLO     L_NOPAGE
        CPY     #EPAGE_HIGH_BOUND ;// test of higher bound of EPAGE
        BHI     L_NOPAGE
FOUND_EPAGE:
        LDX     #EPAGE_ADDR       ;// load page register address and clear zero flag
        RTS

L_NOPAGE:                         ;// not in any allowed page area
                                  ;// its a far access to a non paged variable
        ORCC    #0x04             ;// sets zero flag
        RTS
  }
}

#endif /*  defined(__EPAGE__) */
#endif /*  defined(__PPAGE__) */
#endif /*  defined(__DPAGE__) */

#endif /* USE_SEVERAL_PAGES */

/*--------------------------- _SET_PAGE --------------------------------
  Runtime routine to set the right page register. This routine is used if the compiler
  does not know the right page register, i.e. if the option -Cp is used for more than
  one pageregister or if the runtime option is used for one of the -Cp options.

  Arguments :
  - offset part of an address in the Y register
  - page part of an address in the B register

  Result :
  - page part written into the correct page register.
  - the old page register content is destroyed
  - all processor registers remains unchanged
  --------------------------- _SET_PAGE ----------------------------------*/

#ifdef __cplusplus
extern "C"
#endif
#pragma NO_ENTRY
#pragma NO_EXIT
#pragma NO_FRAME

void NEAR _SET_PAGE(void) {
#if USE_SEVERAL_PAGES
  __asm {
        PSHX                      ;// save X register
        __PIC_JSR(_GET_PAGE_REG)
        BEQ     L_NOPAGE
        STAB    0,X               ;// set page register
L_NOPAGE:
        PULX                      ;// restore X register
        RTS
  }
#else /* USE_SEVERAL_PAGES */
  __asm {
        STAB    PAGE_ADDR         ;// set page register
        RTS
  }
#endif /* USE_SEVERAL_PAGES */
}

/*--------------------------- _LOAD_FAR_8 --------------------------------
  This runtime routine is used to access paged memory via a runtime function.
  It may also be used if the compiler  option -Cp is not used with the runtime argument.

  Arguments :
  - offset part of an address in the Y register
  - page part of an address in the B register

  Result :
  - value to be read in the B register
  - all other registers remains unchanged
  - all page register still contain the same value
  --------------------------- _LOAD_FAR_8 ----------------------------------*/

#ifdef __cplusplus
extern "C"
#endif
#pragma NO_ENTRY
#pragma NO_EXIT
#pragma NO_FRAME

void NEAR _LOAD_FAR_8(void) {
#if USE_SEVERAL_PAGES
  __asm {
        PSHX                      ;// save X register
        __PIC_JSR(_GET_PAGE_REG)
        BEQ     L_NOPAGE
        PSHA                      ;// save A register
        LDAA    0,X               ;// save page register
        STAB    0,X               ;// set page register
        LDAB    0,Y               ;// actual load, overwrites page
        STAA    0,X               ;// restore page register
        PULA                      ;// restore A register
        PULX                      ;// restore X register
        RTS
L_NOPAGE:
        LDAB    0,Y               ;// actual load, overwrites page
        PULX                      ;// restore X register
        RTS
  }
#else /* USE_SEVERAL_PAGES */
  __asm {
        PSHA                      ;// save A register
        LDAA    PAGE_ADDR         ;// save page register
        STAB    PAGE_ADDR         ;// set page register
        LDAB    0,Y               ;// actual load, overwrites page
        STAA    PAGE_ADDR         ;// restore page register
        PULA                      ;// restore A register
        RTS
  }
#endif /* USE_SEVERAL_PAGES */
}

/*--------------------------- _LOAD_FAR_16 --------------------------------
  This runtime routine is used to access paged memory via a runtime function.
  It may also be used if the compiler  option -Cp is not used with the runtime argument.

  Arguments :
  - offset part of an address in the Y register
  - page part of an address in the B register

  Result :
  - value to be read in the Y register

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人av一区二区三区在线观看| 成人丝袜高跟foot| 欧洲色大大久久| 一区二区三区丝袜| 欧美精品三级日韩久久| 久久精品国产99国产精品| 久久综合精品国产一区二区三区| 国产福利一区二区三区视频 | 国产成人小视频| 国产精品久久久久天堂| 韩国成人福利片在线播放| 久久久久久影视| av电影在线观看完整版一区二区| 一区二区三区产品免费精品久久75| 在线观看欧美日本| 久久99国产精品久久99| 日本一区二区三区在线观看| 色婷婷av一区二区三区软件| 日本伊人精品一区二区三区观看方式| 精品久久久久久综合日本欧美| 成人国产免费视频| 天天影视色香欲综合网老头| 久久久亚洲精品一区二区三区| 色综合网站在线| 久久99精品国产麻豆婷婷| 国产精品三级在线观看| 欧美日韩亚洲国产综合| 国产成人一区二区精品非洲| 午夜欧美在线一二页| 国产日韩欧美亚洲| 欧美丰满一区二区免费视频| 成人一区在线观看| 另类欧美日韩国产在线| 一区二区国产盗摄色噜噜| 日韩一级片在线播放| 色综合久久天天综合网| 久久69国产一区二区蜜臀| 亚洲综合视频网| 国产欧美一区二区三区在线老狼 | 风流少妇一区二区| 午夜电影一区二区| 国产精品福利av| 日韩一区二区精品在线观看| 91在线观看污| 韩国一区二区视频| 亚洲mv大片欧洲mv大片精品| 欧美国产精品一区二区| 欧美丰满一区二区免费视频| 色婷婷av一区二区三区软件| 国产成人啪免费观看软件| 免费成人性网站| 亚洲丶国产丶欧美一区二区三区| 18成人在线观看| 欧美国产一区二区| 精品福利在线导航| 欧美一三区三区四区免费在线看 | 亚洲一级二级在线| 国产精品欧美综合在线| 精品国产精品一区二区夜夜嗨 | 欧美不卡一区二区三区四区| 欧美日韩一级大片网址| 91成人在线免费观看| 不卡的av中国片| 国产成人一区在线| 国产精品一区在线观看乱码 | 日本不卡一二三区黄网| 亚洲美女屁股眼交3| 中文字幕av一区二区三区免费看| 欧美日韩一区二区三区在线看| 99re亚洲国产精品| 亚洲精品少妇30p| 国产精品嫩草影院com| 久久亚洲二区三区| 777奇米成人网| 日韩亚洲欧美高清| 精品日韩一区二区三区| 91精品久久久久久久91蜜桃| 欧美精三区欧美精三区| 日韩一区二区视频| 久久综合久久综合亚洲| 久久精品夜夜夜夜久久| 日本一区二区动态图| 中文字幕欧美国产| 综合激情网...| 亚洲一区二区三区影院| 日韩综合一区二区| 麻豆精品久久久| 国产成人综合在线| 99麻豆久久久国产精品免费| 色悠悠亚洲一区二区| 欧美日本韩国一区二区三区视频 | 国产精品不卡视频| 一区二区三区色| 日韩精品1区2区3区| 国产一区三区三区| 97久久久精品综合88久久| 欧洲精品一区二区三区在线观看| 欧美日韩美少妇| 日韩你懂的在线观看| 欧美激情艳妇裸体舞| 亚洲色图另类专区| 日韩精品一二三四| 国产精品一级在线| 日本乱码高清不卡字幕| 日韩一区二区三| 亚洲欧洲精品天堂一级| 亚洲国产成人高清精品| 国模娜娜一区二区三区| 色婷婷久久久亚洲一区二区三区| 欧美伦理影视网| 国产午夜亚洲精品午夜鲁丝片| 一区二区三区精品| 久久精品国产99国产| 91麻豆精东视频| 欧美xxxx在线观看| 亚洲精品大片www| 精品在线播放免费| 色婷婷久久久综合中文字幕| 欧美一区二区三区成人| 中文字幕一区二区不卡| 精品一区二区三区在线播放| 成人手机在线视频| 欧美精品日韩精品| 综合久久久久综合| 韩日av一区二区| 欧美色综合网站| 欧美国产一区二区在线观看| 日本中文字幕一区二区有限公司| 成人午夜私人影院| 精品久久久久久久久久久久久久久| 亚洲欧美视频在线观看视频| 韩国女主播一区二区三区| 欧美少妇bbb| 亚洲视频香蕉人妖| 国产成人av影院| 欧美tickling挠脚心丨vk| 一区二区三区小说| 成人免费视频一区| 2024国产精品| 久久99精品国产| 91精品国产综合久久福利软件| 中文字幕一区二区三区色视频| 国产精品一级黄| 精品国产不卡一区二区三区| 日韩精品一二三区| 欧美日韩日日摸| 亚洲观看高清完整版在线观看| 9l国产精品久久久久麻豆| 久久久久久**毛片大全| 美女脱光内衣内裤视频久久影院| 精品视频一区二区三区免费| 亚洲免费资源在线播放| 成人免费黄色大片| 中文无字幕一区二区三区 | 欧美一区二区三区小说| 亚洲一区在线电影| 欧洲一区在线观看| 一区二区三区国产精品| 色天天综合久久久久综合片| 国产精品成人免费| 成人av在线一区二区三区| 国产三级一区二区三区| 国产一区二区三区综合| 久久美女高清视频| 国产高清成人在线| 国产精品美女视频| 92精品国产成人观看免费| 亚洲欧美电影院| 一本到三区不卡视频| |精品福利一区二区三区| 成人免费高清视频在线观看| 欧美国产激情二区三区| 国产真实乱偷精品视频免| 精品电影一区二区三区| 激情文学综合插| 久久麻豆一区二区| 国产黑丝在线一区二区三区| 国产亚洲欧美一级| 国产成人亚洲综合a∨猫咪| 久久久久久久久久看片| jizzjizzjizz欧美| 国产精品午夜电影| 91美女蜜桃在线| 亚洲乱码中文字幕| 在线观看不卡视频| 亚洲国产欧美在线| 欧美色图在线观看| 图片区日韩欧美亚洲| 91精品国产入口在线| 免费成人在线观看| 久久综合国产精品| 成人午夜视频福利| 亚洲一区二区3| 欧美一级一区二区| 国产美女精品人人做人人爽| 国产精品久久久久久一区二区三区 | 伊人夜夜躁av伊人久久| 91高清视频免费看| 午夜激情久久久| 欧美sm美女调教|