亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
一区二区三区日韩欧美| 精品一区二区三区的国产在线播放 | 美女视频黄a大片欧美| 国产福利一区二区三区在线视频| 91精品福利视频| 精品欧美乱码久久久久久| 成人免费视频在线观看| 理论电影国产精品| 欧美亚一区二区| 综合色中文字幕| 国产精品自在欧美一区| 日韩一区二区三区在线| 亚洲第一激情av| 91麻豆国产香蕉久久精品| 国产亚洲成aⅴ人片在线观看| 视频一区在线播放| 在线视频你懂得一区| 亚洲欧洲精品一区二区精品久久久| 久久99久久久久久久久久久| 欧美人与性动xxxx| 亚洲自拍偷拍九九九| 97se亚洲国产综合自在线不卡 | 5566中文字幕一区二区电影| 亚洲免费观看高清完整版在线观看熊 | 色噜噜夜夜夜综合网| 国产精品乱码久久久久久| 国产一区二区导航在线播放| 欧美成人乱码一区二区三区| 麻豆视频一区二区| 欧美一区二区播放| 日本不卡视频在线| 欧美一区二区黄色| 久久99精品久久久久| 精品日韩99亚洲| 国产精品一区二区在线播放 | 欧美电视剧在线观看完整版| 美女性感视频久久| 日韩精品一区二| 韩国欧美一区二区| 国产欧美日韩在线| 成人av电影免费在线播放| 国产视频一区二区在线观看| 成人黄色777网| 亚洲黄色免费电影| 在线播放91灌醉迷j高跟美女 | 精品国产成人系列| 激情综合网最新| 国产嫩草影院久久久久| 97成人超碰视| 天堂资源在线中文精品| 日韩欧美一区中文| 国产成人午夜99999| 自拍偷拍欧美精品| 欧美日韩国产一二三| 久久99国产精品久久99果冻传媒| 久久亚洲精华国产精华液| aaa欧美日韩| 午夜国产精品影院在线观看| ww亚洲ww在线观看国产| 成人h精品动漫一区二区三区| 一个色妞综合视频在线观看| 欧美一级黄色大片| 丰满放荡岳乱妇91ww| 亚洲午夜羞羞片| 久久网站最新地址| 91久久精品一区二区| 狂野欧美性猛交blacked| 成人免费小视频| 日韩一区二区免费在线电影| 波多野结衣中文字幕一区二区三区 | 免费观看久久久4p| 亚洲国产成人在线| 欧美韩国一区二区| 一本在线高清不卡dvd| 日韩av午夜在线观看| 国产欧美一区二区在线观看| 欧美美女视频在线观看| 成人国产精品免费观看| 日产国产高清一区二区三区| 国产精品久久久久久久久免费相片 | 99国产欧美另类久久久精品| 日本欧美韩国一区三区| 亚洲精品国产一区二区三区四区在线| 欧美成人综合网站| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 国产在线日韩欧美| 亚洲国产日韩精品| 日韩美女视频一区二区| 久久久久久久久久久久久女国产乱 | 91色在线porny| 国产酒店精品激情| 毛片不卡一区二区| 亚洲高清免费观看高清完整版在线观看| 久久嫩草精品久久久精品一| 欧美精品免费视频| 在线看一区二区| 91在线视频播放| 成人免费精品视频| 国产91综合一区在线观看| 麻豆91精品91久久久的内涵| 午夜天堂影视香蕉久久| 亚洲情趣在线观看| 欧美高清在线一区二区| 久久综合成人精品亚洲另类欧美 | 国产综合一区二区| 日本sm残虐另类| 免费欧美日韩国产三级电影| 亚洲高清视频在线| 一二三区精品福利视频| 亚洲激情六月丁香| 亚洲精选免费视频| 一区二区在线观看不卡| 最近日韩中文字幕| 亚洲精品乱码久久久久久| 亚洲欧美综合网| 一区二区三区鲁丝不卡| 夜夜精品视频一区二区| 一区二区高清在线| 亚洲第一激情av| 日韩高清在线观看| 久久99国产精品久久99| 黄色小说综合网站| 国产不卡在线一区| 成人av片在线观看| 色综合久久久久| 91性感美女视频| 欧美日韩免费视频| 在线播放91灌醉迷j高跟美女 | 免费人成精品欧美精品 | 美女一区二区三区在线观看| 麻豆精品视频在线观看| 国产精品一区二区三区四区| 成人av电影在线观看| 91在线播放网址| 欧美精品一卡二卡| www国产精品av| 综合色中文字幕| 日韩精品久久理论片| 韩国女主播一区二区三区| 大胆欧美人体老妇| 在线视频综合导航| 精品久久久久久久久久久久包黑料| 国产亚洲精品aa午夜观看| 亚洲精品免费在线播放| 蜜桃av噜噜一区二区三区小说| 久久精品久久综合| 99re热这里只有精品免费视频| 欧美偷拍一区二区| 亚洲精品一区二区在线观看| 亚洲欧洲日本在线| 日本不卡高清视频| 91亚洲午夜精品久久久久久| 91精品国产综合久久久久久久| 久久精品在这里| 一个色综合网站| 国产在线精品一区在线观看麻豆| 91丨九色丨蝌蚪丨老版| 欧美一区日韩一区| 中文字幕亚洲区| 精品一区二区三区香蕉蜜桃 | 亚洲国产精品久久久久婷婷884| 精品综合免费视频观看| 91免费版在线看| www激情久久| 午夜日韩在线电影| 99在线精品观看| 26uuu久久天堂性欧美| 亚洲mv在线观看| 99久久久久久99| 久久久久久久久99精品| 视频一区二区不卡| 91成人国产精品| 中文字幕欧美一| 国产福利精品一区二区| 欧美一区二区三区公司| 一级精品视频在线观看宜春院| 成人综合婷婷国产精品久久| 日韩一卡二卡三卡四卡| 亚洲一区视频在线| 色综合一区二区| 国产精品视频一区二区三区不卡| 久久精品国产久精国产爱| 欧美日韩国产首页在线观看| 亚洲欧洲综合另类在线| 成人精品国产免费网站| 久久精品欧美日韩精品| 极品销魂美女一区二区三区| 91麻豆精品国产| 视频一区视频二区中文| 欧美特级限制片免费在线观看| 日韩伦理免费电影| 91网站在线播放| 亚洲黄色免费网站| 色综合久久88色综合天天免费| 国产精品成人午夜| 99精品视频在线免费观看| 国产精品不卡一区二区三区| 福利一区二区在线观看| 国产精品久久久久天堂| 99久久国产综合精品女不卡|