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

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

?? lcd15xx.c

?? uCOS/uCGUI在2440上的移植
?? C
?? 第 1 頁 / 共 5 頁
字號:
/*
*********************************************************************************************************
*                                                uC/GUI
*                        Universal graphic software for embedded applications
*
*                       (c) Copyright 2002, Micrium Inc., Weston, FL
*                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
*
*              礐/GUI is protected by international copyright laws. Knowledge of the
*              source code may not be used to write a similar product. This file may
*              only be used in accordance with a license and should not be redistributed
*              in any way. We appreciate your understanding and fairness.
*
----------------------------------------------------------------------
File        : LCD15XX.C
Purpose     : Driver for LCDs using Seiko Epson SED15XX controllers     
              The current version supports up to 4 LCD controllers in   
              (almost) any hardware configuration. The following
               derivatives are currently supported:
               Epson SED1560
               Epson SED1565  132*65  BW
               Epson SED1566  132*49  BW   (untested due to lack of hardware)
               Epson SED1567  132*33  BW   (untested due to lack of hardware)
               Epson SED1568  132*55  BW   (untested due to lack of hardware)
               Epson SED1569  132*53  BW   (untested due to lack of hardware)
               Epson SED1575  132*200 BW
               Samsung KS0108B
               Hitachi HD61202
               
               Other Epson LCD controllers are very similar and could
               be covered by this driver as well, but are not
               currently supported.
----------------------------------------------------------------------
Version-Date---Author-Explanation
----------------------------------------------------------------------
2.02e   020716 JE     a) Support for KS0108B & HD61202 added
2.02d   020715 JE     a) Reworked to work with 2 LCD-controllers
2.02c   020204 JE     a) Hardwareinterface routines renamed:
                         ...DATA -> ...A1, ...CMD -> ...A0
2.02b   010706 JE     a) BUGFIXES: DrawBitLine1BPP_NoSwap
2.02a   010402 RS     a) LCD_GetDevCaps removed from driver
                         (now LCD.c)
2.02    010329 JE     a) Completely revised, tested without mirror & swap
2.00    001107 RS     a) New driver interface V2.00 used
1.32.01 000321 RS     a) BUGFIX: LCD__ClearVRam: aCAdr set to LCD_SEGS_MAX-1
                      b) BUGFIX: Flush: DataR_Cache = DataW_Cache inserted
               JE     c) BUGFIX: ASSIGN_PIXEL_FAST now takes account 
                         of LCD_DRAWMODE_XOR
                      d) BUGFIX: DrawBitLine1BPP_NoSwap XORMODE now works
                      e) BUGFIX: DrawBitLine1BPP_NoSwap clipping now works
                      f) BUGFIX: FindByte: -LCD_FIRSTSEG0 removed
                      g) BUGFIX: LCD_RefreshSection: -LCD_FIRSTSEG0 removed
                      h) LCD_DrawBit now checks number of colors
1.32.00 990930 RS     a) LCD_Init now returns an int
                      b) bit changed -> Bit in order to vaoid problems
                         with IAR compilers
1.31.06 990926 RS     a) Code is generated now only if LCD_CONTROLLER
                         is in the range of 1500 - 1599, allowing to
						 compile all LCD drivers with a project, making
						 the selection in the config file.
					  b) Config defaults added
1.31.05 990922 RS/BB  a) Number of Segments for 1575 changed from 168
                         to 200. 200 is correct because the controller
						 has RAM for 200 segments, even thou just 168
						 segment lines
					  b) Transparency support for bitmaps in
					     DrawBitLine1BPP_Swap added
1.31.04 990810 RS     a) LCD__ClearVRam: Cut and paste error elimiated
                         (Relevant only in 4 controller system)
					  b) Transparency problem in DrawBitLine1BPP_Swap
					     eliminated
					  c) CALCXY: LCD_FIRSTSEG had been subtracted,
					     but had already been subtracted before. Could
						 lead to a an offset in the memory area used as
						 video RAM if LCD_FIRSTSEG<x>  != 0.
						 Fixed.
					  d) FlushCache-routine simplified for easier
					     maintanance using a macro
				      e) Bugfix in FlushCache-routine --- untested
					     due to lack of hardware !
1.31.03 990720 RS     a) Compile problem in single-controller system
                         (CurController) fixed
                      b) GotoYPlus1(void) Prototype: Parameterlist:
					     () replaced by (void) to avoid comiler warning
1.31.02 990713 RS     a) All (global/static) variables are initialized in
                         LCD_Init. This turned out to be necessary as not
						 all systems comply with ANSI-"C" and automatically
						 initialize	these variables with 0.
1.31.01 990712 RS     a) Cache locking bug for systems with seg/Com lookup
                         tables fixed. Cache writeout accelerated.
1.31.00 990712 RS     a) FindByte made leaner and converted to a macro
                         for 2 controller systems, resulting in improved
						 performance
					  b) Internal DrawLine /DrawBitmap routines
					     improved for higher performance and better
						 readability
					  c) Inline versions of SetPixel/ClrPixel created, as
					     well as fast versions of ASSIGN_PIXEL
						 (again: for better performance !)
1.30.03 990709 RS     a) Structural changes leading to clearer
                         structure and higher performance
    	              b) FindByte Optimization for 2-Controller system
	        	      c) Bugfix: One of the previous optimizations
		                 could lead to a duplicated byte in video memory
             			 when LCD_DrawByte was called fo very
			             narrow bitmaps. Fixed.
1.30.02 990708 RS     a) ReadData optimized if all bytes are
                         in Cache (macro, no switch statement)
1.30.01 990707 RS     a) Add. Optimization in FindByte
1.30.00 990707 RS     a) Various optimizations impemented, esp.
                         if translation (lookup) table for COMs is
                                          activated
1.21.02 990617 RS     a) Macro bug (created in 1.21.01) cleaned up
                      b) Page 8 of all controllers cleared during
                         init in order to make sure that the COMS
                         signal can be used and the data for it is
                         cleared to 0
                      c) Problem with segment table fixed ...
                         If used, the segments were moved by LCD_FIRSTSEG<X>
1.21.01 990615 RS     a) Some more macros generated in order to
                         keep the driver easy to maintain
                      b) Com-offset is now subtracted from Cache<X>
                         index (in order to avoid potential bounds
                         problem): e.g.:
                         Cache0[Page][Col] --> Cache0[Page][Col-LCD_FIRSTSEG0]
1.21.00 990615 RS     a) When using segment/com lookup tables,
                         the macro-values
                         LCD_NUM_COMS0, LCD_NUM_COMS0
                         LCD_NUM_COMS1, LCD_NUM_COMS1 (controller 1)
                         Have to be defined.
                         Add. configuration checking added.
1.20.02 990614 RS     a) LCD_Init did not clear VMem for 3. and 4.
                         controller. Fixed.
                         configuration switches eliminated
1.20.01 990614 RS     a) Problem with certain combination of
                         configuration switches eliminated
1.20.00 990614 RS     a) Optional segment and com translation tables
                         supported. This turned out to be necessary
                         as with some LCDs the COM/SEG lines are
                         completely mixed up. The translation tables
                         have to be defined in a seperate file
                         (sample supplied in LCDTable.c) in
                         order to make sure that the code in this
                         driver does not have to be changed.
1.10.00 990505 RS     a) Optional support for Cache locking added.
                         It now requires the add. configuration switch
                         LCD_SUPPORT_CACHECONTROL
1.04.00 990420 AW/RS  a) Support for 1560 added.
1.03.03 990322 RS     a) Bitmaps have not been properly cut off at the
                         end of the clipping region. Fixed
                      b) Clipping for horizontal/vert. lines
                         implemented
1.03.02 990319 RS     a) When writing bitmaps in XOR-Mode, the LCD   
                         cache was not automatically flushed.
                         Fixed.
1.03.01 990319 RS     a) (Kuennemann) If multiple LCD-controllers had
                         been used in a horizontal array (different
                         SEG lines with SEG<X> > 0) the page
                         calculation did not take the SEG<X> value
                         into account. Fixed.
                      b) (Kuennemann)
                         LCD_Init(): VRAM of controller2/3 was not
                         cleared in a 3 or 4 controller system.
                         Fixed.
                      c) LCD_SetInverse / LCD_ClrInverse:
                         These routines did not write the command to
                         all LCD-controllers, but only to the first
                         one. Fixed.
1.03.00 990317 RS     a) XOR Mode implemented for all configurations
                      b) DrawVLine accelerated
1.02.03 990218 RS     a) (Kuennemann) If multiple LCD-controllers had
                         been used in a vertical array (different
                         COM lines with COM<X> > 0) the page
                         calculation did not take the COM<X> value
                         into account. Fixed.
                      b) Driver should now also work with 4
                         controllers. However, this configuration is
                         still untested. The #error is taken out.
1.02.02 990217 RS     a) LCD_GetVisPage, LCD_GetSelPage added
1.02.01 990216 RS     a) LCD_GetPixel implemented
                      b) Support for GetDeviceCaps added
                      c) Support for Drawmode can now be disabled via
                         config switch
1.02.00 990212 RS     a) Include file string.h put back in in order to
                      be able to completly reset the LCD, including
                      clearing the cache
                      b) LCD_Refresh implemented
                      c) Support for physical bitmaps added
                      d) Support for LCD_REVERSE added
                      e) Support for Write-thru cache added
1.01.01 990203 RS     a) Include file string.h no longer needed,
                      taken out
1.01.00 990203 RS     a) Cache no longer filled with 0 using memset
                       (We trust the compiler to do the job for us.)
1.00.02 990202 RS     Support for up to 4 controllers implemented
1.00.01 990128 RS     Changes in header-configuration  as discussed
                      with BB
1.00    990118 RS     First release for up to 2 LCD controllers *
----------------------------------------------------------------------
Known problems or limitations with current version
----------------------------------------------------------------------
Due to the change to interface version 2.0,
The draw bitline routines has been temp. disabled
The routines:
LCD_L0_SetPixelIndex
LCD_L0_XorPixel
LCD_L0_GetPixelIndex
need to be proberly implemented
----------------------------------------------------------------------
Possible optimizations
----------------------------------------------------------------------
---------------------------END-OF-HEADER------------------------------
*/

#include <string.h>             /* for memset */
#include <stddef.h>           /* needed for definition of NULL */
#include "LCD_Private.h"      /* private modul definitions & config */
#include "GUI_Private.h"
#include "GUIDebug.h"
#include "LCD_0.h"            /* Defines for first display */

#if   (   (LCD_CONTROLLER/100 ==    15) \
       || (LCD_CONTROLLER     ==  0713) \
       || (LCD_CONTROLLER     ==   108) \
       || (LCD_CONTROLLER     == 61202) \
      ) \
      && (LCD_CONTROLLER/100 != 0x15E05 ) \
      && (!defined(WIN32) | defined(LCD_SIMCONTROLLER))

/*
        *********************************************************
        *                                                       *
        *           Compiler specific settings                  *
        *                                                       *
        *********************************************************

*/

#ifdef WIN32   /* Avoid warnings in MS-compiler */
  #pragma warning(disable : 4244)  // warning C4244: '=' : conversion from 'long ' to 'unsigned char ', possible loss of data
  #pragma warning(disable : 4761)  // warning C4761: integral size mismatch in argument; conversion supplied
  #pragma warning(disable : 4305)  // warning C4305: '=' : truncation from 'const int ' to ...
#endif


#ifndef LCD_DISPLAY_INDEX
  #define LCD_DISPLAY_INDEX 0
#endif


/*********************************************************************
*
*      Map hardware macros
*
**********************************************************************
*/

/* mapping for multi-display configuration */
#if (LCD_NUM_DISPLAYS > 1)
  #if   (LCD_DISPLAY_INDEX == 0)     /* First display in a multi-display configuration */
    #define LCD_WRITE_A0   LCD_WRITE_A0_0
    #define LCD_WRITE_A1   LCD_WRITE_A1_0
    #define LCD_WRITE_A0C1 LCD_WRITE_A0C1_0
    #define LCD_WRITE_A1C1 LCD_WRITE_A1C1_0
    #define LCD_WRITE_A0C2 LCD_WRITE_A0C2_0
    #define LCD_WRITE_A1C2 LCD_WRITE_A1C2_0
    #define LCD_WRITE_A0C3 LCD_WRITE_A0C3_0
    #define LCD_WRITE_A1C3 LCD_WRITE_A1C3_0
    #define LCD_READ_A0    LCD_READ_A0_0
    #define LCD_READ_A0    LCD_READ_A0_0
    #define LCD_READ_A0C1  LCD_READ_A0C1_0
    #define LCD_READ_A0C1  LCD_READ_A0C1_0
    #define LCD_READ_A0C2  LCD_READ_A0C2_0
    #define LCD_READ_A0C2  LCD_READ_A0C2_0
    #define LCD_READ_A0C3  LCD_READ_A0C3_0
    #define LCD_READ_A0C3  LCD_READ_A0C3_0
  #elif (LCD_DISPLAY_INDEX == 1)  /* Second display in a multi-display configuration */
    #define LCD_WRITE_A0   LCD_WRITE_A0_1
    #define LCD_WRITE_A1   LCD_WRITE_A1_1
    #define LCD_WRITE_A0C1 LCD_WRITE_A0C1_1
    #define LCD_WRITE_A1C1 LCD_WRITE_A1C1_1
    #define LCD_WRITE_A0C2 LCD_WRITE_A0C2_1
    #define LCD_WRITE_A1C2 LCD_WRITE_A1C2_1
    #define LCD_WRITE_A0C3 LCD_WRITE_A0C3_1
    #define LCD_WRITE_A1C3 LCD_WRITE_A1C3_1
    #define LCD_READ_A0    LCD_READ_A0_1
    #define LCD_READ_A0    LCD_READ_A0_1
    #define LCD_READ_A0C1  LCD_READ_A0C1_1
    #define LCD_READ_A0C1  LCD_READ_A0C1_1
    #define LCD_READ_A0C2  LCD_READ_A0C2_1
    #define LCD_READ_A0C2  LCD_READ_A0C2_1
    #define LCD_READ_A0C3  LCD_READ_A0C3_1
    #define LCD_READ_A0C3  LCD_READ_A0C3_1
  #else
    #error This many displays not yet supported !
  #endif
#endif

/* Command definitions in dependence of selected LCD-controller */
#if   (LCD_CONTROLLER/100 == 15) || (LCD_CONTROLLER     ==  0713)
  #define SET_PAGE0(Page) LCD_WriteSingleCommand0(0xb0 + Page)
  #define SET_CADR0(Col)  LCD_WriteDoubleCommand0(0x10 + (Col >> 4), 0x00 + (Col & 0xf))
  #define CMD_LCD_ON      0xaf
  #define CMD_LCD_OFF     0xae
  #define WAIT0()
  #define WAIT1()
  #define WAIT2()
  #define WAIT3()
#elif (LCD_CONTROLLER ==  108) || (LCD_CONTROLLER == 61202)
  static int _Status;
  #define SET_PAGE0(Page) LCD_WriteSingleCommand0(0xb8 + Page);
  #define SET_CADR0(Col)  LCD_WriteSingleCommand0(0x40 + Col);
  #if (LCD_NUM_CONTROLLERS > 1)
    #define SET_PAGE1(Page) LCD_WriteSingleCommand1(0xb8 + Page);
    #define SET_CADR1(Col)  LCD_WriteSingleCommand1(0x40 + Col);
  #endif
  #define CMD_LCD_ON      0x3f
  #define CMD_LCD_OFF     0x3e
  #define WAIT0()         do { LCD_READ_A0(_Status); }   while (_Status & 0x80);
  #define WAIT1()         do { LCD_READ_A0C1(_Status); } while (_Status & 0x80);
  #define WAIT2()         do { LCD_READ_A0C2(_Status); } while (_Status & 0x80);
  #define WAIT3()         do { LCD_READ_A0C3(_Status); } while (_Status & 0x80);
#else
  #error LCD-controller not supported!
#endif

#ifdef WIN32     /* SEGGER internal simulation */
  void SIM_WriteA1C0(U8 Data);
  void SIM_WriteA0C0(U8 cmd);
  U8   SIM_ReadA0C0(void);
  U8   SIM_ReadA1C0(void);
  #define WRITE_DATA0(Data) SIM_WriteA1C0(Data) 
  #define WRITE_CMD0(cmd)   SIM_WriteA0C0(cmd)
  #define READ_DATA0(Data)  Data = SIM_ReadA1C0()
  #define READ_CMD0(cmd)    cmd  = SIM_ReadA0C0()
  #define INIT_CONTROLLER()
  #if LCD_NUM_CONTROLLERS > 1
    void SIM_WriteA1C1(U8 Data);
    void SIM_WriteA0C1(U8 cmd);
    U8   SIM_ReadA0C1(void);
    U8   SIM_ReadA1C1(void);
    #define WRITE_DATA1(Data) SIM_WriteA1C1(Data) 
    #define WRITE_CMD1(cmd)   SIM_WriteA0C1(cmd)
    #define READ_DATA1(Data)  Data = SIM_ReadA1C1()
    #define READ_CMD1(cmd)    cmd  = SIM_ReadA0C1()
  #endif
  #if LCD_NUM_CONTROLLERS > 2
    void SIM_WriteA1C2(U8 Data);
    void SIM_WriteA0C2(U8 cmd);
    U8   SIM_ReadA0C2(void);
    U8   SIM_ReadA1C2(void);
    #define WRITE_DATA2(Data) SIM_WriteA1C2(Data) 
    #define WRITE_CMD2(cmd)   SIM_WriteA0C2(cmd)
    #define READ_DATA2(Data)  Data = SIM_ReadA1C2()
    #define READ_CMD2(cmd)    cmd  = SIM_ReadA0C2()
  #endif
  #if LCD_NUM_CONTROLLERS > 3
    void SIM_WriteA1C3(U8 Data);
    void SIM_WriteA0C3(U8 cmd);
    U8   SIM_ReadA0C3(void);
    U8   SIM_ReadA1C3(void);
    #define WRITE_DATA3(Data) SIM_WriteA1C3(Data) 
    #define WRITE_CMD3(cmd)   SIM_WriteA0C3(cmd)
    #define READ_DATA3(Data)  Data = SIM_ReadA1C3()
    #define READ_CMD3(cmd)    cmd  = SIM_ReadA0C3()
  #endif
#else
  #define WRITE_CMD0(cmd)   WAIT0(); LCD_WRITE_A0(cmd)
  #define WRITE_DATA0(Data) WAIT0(); LCD_WRITE_A1(Data)
  #define READ_DATA0(Data)  WAIT0(); LCD_READ_A1(Data)
  #define READ_CMD0(cmd)    WAIT0(); LCD_READ_A0(cmd)
  #define INIT_CONTROLLER  LCD_INIT_CONTROLLER
  #if LCD_NUM_CONTROLLERS > 1
    #define WRITE_CMD1(cmd)   WAIT1(); LCD_WRITE_A0C1(cmd)
    #define WRITE_DATA1(Data) WAIT1(); LCD_WRITE_A1C1(Data)
    #define READ_DATA1(Data)  WAIT1(); LCD_READ_A1C1(Data)
    #define READ_CMD1(cmd)    WAIT1(); LCD_READ_A0C1(cmd)
  #endif
  #if LCD_NUM_CONTROLLERS > 2
    #define WRITE_CMD2(cmd)   WAIT(2); LCD_WRITE_A0C2(cmd)
    #define WRITE_DATA2(Data) WAIT(2); LCD_WRITE_A1C2(Data)
    #define READ_DATA2(Data)  WAIT(2); LCD_READ_A1C2(Data)
    #define READ_CMD2(cmd)    WAIT(2); LCD_READ_A0C2(cmd)
  #endif
  #if LCD_NUM_CONTROLLERS > 3
    #define WRITE_CMD3(cmd)   WAIT(3); LCD_WRITE_A0C3(cmd)
    #define WRITE_DATA3(Data) WAIT(3); LCD_WRITE_A1C3(Data)
    #define READ_DATA3(Data)  WAIT(3); LCD_READ_A1C3(Data)
    #define READ_CMD3(cmd)    WAIT(3); LCD_READ_A0C3(cmd)
  #endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久五月婷婷丁香社区| 精品制服美女久久| 国产九色精品成人porny| 国产欧美一区二区三区鸳鸯浴 | 欧美高清激情brazzers| 亚洲sss视频在线视频| 欧美日韩国产免费| 久久精品国产第一区二区三区| 国产午夜精品久久久久久免费视| 色视频欧美一区二区三区| 日韩av午夜在线观看| 久久久久久久久蜜桃| 91国偷自产一区二区开放时间 | 欧美日韩一区中文字幕| 国产在线一区二区综合免费视频| 亚洲另类在线视频| 日韩欧美国产综合一区 | 成人深夜视频在线观看| 一区二区三区四区不卡在线| 91精品国产一区二区三区| 成人涩涩免费视频| 91在线视频免费观看| 免费在线观看日韩欧美| 一区二区三区在线看| 日韩电影在线看| 国产精品一区二区无线| 成人免费三级在线| 欧美久久高跟鞋激| 日韩免费视频一区| 亚洲男人天堂一区| 欧美国产欧美综合| 欧美一区二区三区的| 国产日韩欧美精品一区| 综合电影一区二区三区| 秋霞av亚洲一区二区三| 日韩一卡二卡三卡| 欧美日韩亚洲另类| 精品国产乱子伦一区| 日韩一区二区三区av| 国产欧美一区视频| 欧美aaaaa成人免费观看视频| 国产精品99久久久久久久女警| 色www精品视频在线观看| 精品国一区二区三区| 亚洲男人天堂av网| 国产成人无遮挡在线视频| 国产成人免费av在线| 欧美挠脚心视频网站| 亚洲国产精品传媒在线观看| 天天综合日日夜夜精品| 日韩av电影免费观看高清完整版| 成人在线视频一区| 久久久国产午夜精品| 天堂成人国产精品一区| 亚洲一区欧美一区| 国产91丝袜在线播放0| 久草这里只有精品视频| 欧美在线短视频| 欧美精品丝袜久久久中文字幕| 中文字幕欧美区| 精品午夜久久福利影院| 欧美日本国产一区| 一区二区免费看| 99久久久久久| 亚洲欧洲日韩综合一区二区| 中文字幕一区av| 福利一区福利二区| 久久久久久97三级| 国产在线一区观看| 欧美成人r级一区二区三区| 中文天堂在线一区| 五月天激情小说综合| 在线影视一区二区三区| 亚洲黄色av一区| 欧美性xxxxx极品少妇| 精品嫩草影院久久| 九九精品视频在线看| 欧美tickle裸体挠脚心vk| 看电影不卡的网站| 久久女同精品一区二区| 国产真实乱偷精品视频免| 国产视频视频一区| 不卡电影免费在线播放一区| 欧美久久久久久蜜桃| 调教+趴+乳夹+国产+精品| 欧美一区二区三区免费观看视频| 青青青伊人色综合久久| 欧美电影免费观看高清完整版在线观看| 秋霞成人午夜伦在线观看| 欧美成人女星排行榜| 国产精品一区二区久久不卡| 中文字幕的久久| 91丝袜美女网| 国产三级精品在线| av毛片久久久久**hd| 精品国产乱码91久久久久久网站| 国产一区二三区| 3751色影院一区二区三区| 亚洲丝袜制服诱惑| 欧美日韩激情一区二区| 国产一区二区三区美女| 中文字幕巨乱亚洲| 91精彩视频在线观看| 精品一区二区三区在线观看| 国产日本欧美一区二区| 欧美视频一区二| 国产精品91一区二区| 一区二区三区欧美久久| 精品三级在线观看| 99精品国产一区二区三区不卡| 五月婷婷另类国产| 中文字幕不卡在线观看| 7777精品久久久大香线蕉| 国产福利一区二区| 亚洲成a人在线观看| 久久久久88色偷偷免费| 欧美日韩亚洲另类| 盗摄精品av一区二区三区| 亚洲成人精品影院| 国产欧美日韩精品一区| 欧美一级搡bbbb搡bbbb| 91性感美女视频| 国产在线麻豆精品观看| 一区二区三区国产| 国产亚洲1区2区3区| 欧美人与禽zozo性伦| av中文一区二区三区| 国产曰批免费观看久久久| 午夜视黄欧洲亚洲| 亚洲激情中文1区| 欧美精彩视频一区二区三区| 欧美精品丝袜中出| 欧美亚洲高清一区| 95精品视频在线| 国产成人小视频| 激情欧美日韩一区二区| 性感美女极品91精品| 一区二区三区在线播放| 国产精品久久久久久久久快鸭| 99视频精品全部免费在线| 精品一区二区三区在线播放| 日韩成人免费电影| 亚洲一区二区四区蜜桃| 亚洲日穴在线视频| 亚洲欧洲一区二区三区| 中文字幕在线观看一区二区| 欧美激情自拍偷拍| 国产午夜亚洲精品理论片色戒| 2020国产精品| 国产亚洲精品资源在线26u| 日韩欧美一区二区视频| 91精品国产综合久久精品图片| 欧美人妇做爰xxxⅹ性高电影| 欧美午夜宅男影院| 欧美日韩另类一区| 欧美日韩亚洲综合在线| 欧美精品乱码久久久久久| 欧美三级视频在线| 欧美日本在线播放| 91精品国产综合久久久久| 日韩一区二区精品| www欧美成人18+| 久久毛片高清国产| 国产精品国产三级国产aⅴ入口 | 国产精品一区二区三区乱码 | 亚洲欧洲一区二区三区| 亚洲综合在线视频| 图片区小说区区亚洲影院| 婷婷综合另类小说色区| 麻豆国产欧美一区二区三区| |精品福利一区二区三区| 亚洲欧美偷拍卡通变态| 水蜜桃久久夜色精品一区的特点| 日日夜夜免费精品视频| 精品一区二区三区欧美| 懂色av噜噜一区二区三区av| 91免费观看视频在线| 国产精品免费观看视频| 成人一级黄色片| 色香色香欲天天天影视综合网| 国产精品亚洲视频| 色香蕉成人二区免费| 国产综合久久久久影院| 国产婷婷精品av在线| 美女脱光内衣内裤视频久久影院| 欧洲另类一二三四区| 亚洲欧美一区二区三区极速播放 | 欧美α欧美αv大片| 青娱乐精品视频| 欧美日韩久久一区| 夜夜揉揉日日人人青青一国产精品| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 91精品福利视频| 亚洲免费电影在线| 色婷婷精品久久二区二区蜜臀av | 成人教育av在线| 国产精品午夜电影| www.av亚洲| 丁香婷婷深情五月亚洲| 成人免费视频一区|