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

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

?? demo2nd.asm

?? 八核心MCU 之FPPA 80Cxx 原廠範例程序
?? ASM
?? 第 1 頁 / 共 4 頁
字號:
//***************************************************************************
//***** 	FPPA(tm) PDK80Cxx  Application Example Project 		*************
//***************************************************************************
//	Example Name :: OTP Tools 1_8					Version 1.00		
//	Module Name  :: OTPTools.ASM
//	Abstract:
//        	2nd Version Demonstration kit application  
//	Environment:
//        	PADAUK FPPA(TM) IDE Tool Version : 0.510 Beta
//
//	Revision History:
//        	Sept. 15, 2006        Chamber C.P. Ling  Created                 
/////////////////////////////////////////////////////////////////////////
// Copyright (C) 2006 by PADAUK Technology Co. Ltd. All rights reserved.
//
// This code is free for personal and commercial use, providing this 
// notice remains intact in the source files and all eventual changes are
// clearly marked with comments.
//
// No warrantee of any kind, express or implied, is included with this
// software; use at your own risk, responsibility for damages (if any) to
// anyone resulting from the use of this software rests entirely with the
// user.
//
// See the official site at www.padauk.com.tw for documentation and
// the latest news.
//
// Send bug reports, bug fixes, enhancements, requests, flames, etc. to
// service@padauk.com.tw or post them at the message board at the site.
/////////////////////////////////////////////////////////////////////////
// Description:
//	OTPTools.ASM is a tool code for duplicating to 8 OTP chips from a source chip.  
//   
//  This Demo code include a UART Debug function!
//=======================================================================
//--- I/O Pin define
BuzzerIO	equ	pb.2;	// Output
//-- Infra-red
IR_rxIO		equ	pb.1;	// Input
IR_txIO		equ	pb.0;	// Output
//-- UART
UART0_tx	equ	pc.7;	// Output
UART0_rx	equ	pc.5;	// Input	
UART1_tx	equ	pc.6;	// Output
UART1_rx	equ	pc.4;	// Input	
//---
Tx0Bset		equ	0x2E;	// Tx0 Baudrate setting , 9600 based on 500kHz
Tx1Bset		equ	0x08;	// Tx0 Baudrate setting , 38400 based on 500kHz
//-- PWM LED
LEDr		equ	pd.0;	// Output
LEDb		equ	pd.1;	// Output
LEDg		equ	pd.2;	// Output
//--- Stepper Motor --
SMotorA		equ	pa.1;	// Output
SMotorB		equ	pa.2;	// Output
SMotorA_	equ	pa.3;	// Output
SMotorB_	equ	pa.4;	// Output
//--- LCM ---
LCMd4		equ	pb.4;	// bi-direct
LCMd5		equ	pb.5;	// bi-direct
LCMd6		equ	pb.6;	// bi-direct
LCMd7		equ	pb.7;	// bi-direct
LCMrw		equ	pb.3;	// output
LCMen		equ	pe.7;	// output
LCMrs		equ	pe.6;	// output
//-- PS/2 Keyboard --
KBclk		equ	pe.2;	// bi-direct
KBdat		equ	pe.1;	// bi-direct
//-- PS/2 Mouse --
PS2DAT		equ	pe.0;	// bi-direct
PS2CLK		equ	pe.3;	// bi-direct
//-- Hotkey --
KeySW1		equ	pa.0;	// input
KeySW2		equ	pc.2;	// input
//-- Servo Motor (PWM) --
SMTpwm1		equ	pc.3;	// output
SMTpwm2		equ	pe.5;	// output
SMTpwm3		equ	pe.4;	// output
SMTpwm4		equ	pc.0;	// output
SMTpwm5		equ	pc.1;	// output
SMTpwm6		equ	pd.3;	// output
//--
//--- Macro define
//---
PS2DAT_Input	macro	
		set0	pec.0;
		endm
PS2DAT_Output	macro	
		set1	pec.0;
		endm
PS2CLK_Input	macro	
		set0	pec.3;
		endm
PS2CLK_Output	macro	
		set1	pec.3;
		endm
//---

//.define   IR_Debug;
//==================================
//--- Internal Memory Define ---
//==================================
word	RAMindex;
//----parameters definitions of UART TX function  --
word	TxStrPt ;
//--
int		UARTCt;		// bit0	: 1: Enable TX0 , 0:Inhibit TX0 !!
					// bit1	: 1: Enable RX0 , 0:Inhibit RX0!!
					// bit2	: 1: Enable TX1 , 0:Inhibit TX1!!
					// bit3	: 1: Enable RX1 , 0:Inhibit RX1!!
					// bit4	: Reserved
					// bit5	: Reserved
					// bit6	: Reserved
					// bit7	: Reserved
int		UARTSt;		// bit0	: 1: TX0 Busy , 0:TX0 Free!!
					// bit1	: 1: RX0 Busy , 0:RX0 Free!!
					// bit2	: 1: TX1 Busy , 0:TX1 Free!!
					// bit3	: 1: RX1 Busy , 0:RX1 Free!!
					// bit4	: Reserved!
					// bit5	: Reserved					
					// bit6	: Reserved
					// bit7	: Reserved					
//-------Tx0/Rx0 --- 
//----- UART1 Tx0 Function Debug for Infra-Red ----- 
int		Tx0Buf ;		// Tx0 Buffer
int		Tx0Shiftbit;	// Tx0 Shift bit, if protocol is 8bit, then it is 8 
int 	Tx0Baud;		// Tx0 Baudrate Time Base, see the detail as followed
int		Tx0HEX;			// register for call function
//-- receive Function  (No used)-----
int 	Rx0Buf;			// Rx0 Buffer
int		Rx0Shiftbit; 	// Rx0 Shift bit, if protocol is 8bit, then it is 8
int 	Rx0Baud;		// Rx0 Baudrate Time Base, see the detail as followed
int		FIFO0Buf;		// One FIFO for UART1, based on your applications,
int 	Rx0BaudOffset;	// Offset Time clock for Rx Sample pointer(TxBaudrate/2)
//
//-------Tx1/Rx1 --- 
//----- UART2 Tx1 Function Debug for Infra-Red ----- 
int		Tx1Buf ;		// Tx1 Buffer
int		Tx1Shiftbit;	// Tx1 Shift bit, if protocol is 8bit, then it is 8 
int 	Tx1Baud;		// Tx1 Baudrate Time Base, see the detail as followed
int		Tx1HEX;			// register for call function
//-- receive Function  (No used)-----
int 	Rx1Buf;			// Rx1 Buffer
int		Rx1Shiftbit; 	// Rx1 Shift bit, if protocol is 8bit, then it is 8
int 	Rx1Baud;		// Rx1 Baudrate Time Base, see the detail as followed
int		FIFO1Buf;		// One FIFO for UART1, based on your applications,
int 	Rx1BaudOffset;	// Offset Time clock for Rx Sample pointer(TxBaudrate/2)
//---Processor 1 Application parameters definition block
//	R-G-B LED Sequencer flasher (PWM Control)
//word	LEDTabPtr;
int		LED_PWMBase;
int		LED_Rpwm;		// LED R PWM
int		LED_Gpwm;;		// LED G PWM
int		LED_Bpwm;;		// LED B PWM
//----
//--
//--
//---Processor 3 Application parameters definition block
//	 Infra-Red Receiver Module
.ramadr	0x20
//---IR parameters
int		IRData_ID0;	
int		IRData_ID1;	
int		IRData_ID2;	
int		IRData_ID3;	
int		IRData_Code;
int		IRData_CodeInv;		
int		IRHighDuty;
int		IRSerialBit;
word	RAMPtr;
//--
int		IRdt1;
int		IRdt2;
//--
//---Processor 2 Application parameters definition block
//	LCM Dsiplay Module
word	LCMStrPt ;
int		LCMArgu ;
int		u10Sec ;
int		u100Sec;
int		s1Sec;
int		s10Sec;
int		m1Min;
int		m10Min;
int		h1Hour;
int		h10Hour;
int		ClockDelayT0;		// LED Delay duration 0
//--
int		FirstRowPos;
int		Nextpoint;
//---Processor 3 Application parameters definition block
//	 PS2 Keyboard Control Module
//	 PS2 Mouse Control Module
int		PS2HostCommand;
int		PS2DeviceData;
int		PS2Shiftbit;
int		PS2Ctrl;
int		PS2TimeOutCLK;
//--
int		PS2_Ack;			// PS2 Ack 
int		PS2_BAT;			// BAT(Basic Assurance Test)
int		PS2_DeviceID;		// PS2 Device ID (Mouse)
int		PS2_MouseB1;		// Mouse movement Data
int		PS2_MouseB2;		// Mouse movement Data
int		PS2_MouseB3;		// Mouse movement Data
int		PS2_MouseB4;		// Mouse movement Data
//--
int		PS2DT0;
int		PS2DT1;
// 

//---Processor 4 & 5 Application parameters definition block
//	 Melody Music player Module
word	MusicPt ;
int		MusicTone ;
int		MusicFr;
int		D187ms ;		// Music tempo delay, 187mSec
int		MusicCtrl;
//--
//---Processor 6 Application parameters definition block
//	 Stepper Motor Control Module
word	MotorPt ;
int		MotorTmp;
int		MotorCtrl;
int		MotorSpeed;
int		MotorPhase;
//--
//---Processor 7 Application parameters definition block
//	 Servo Motor Control Module
int		PWMBaseDT0;
int		PWMBaseDT1;
//--
int		PWM_MSB;
int		PWM_LSB;
//--
int		PWMBase;	// 0~255
int		PWMSet;		// 0~255
int		PWMSet_;
//
//
int		GR0;		// general Register #0
int		GR1;		// general Register #1
int		GR2;		// general Register #2
int		GR3;		// general Register #3
int		GR4;		// general Register #4
int		GR5;		// general Register #5
int		GR6;		// general Register #6
int		GR7;		// general Register #7
//
//--
int		DT0;
int		DT1;
int		DT2;
int		DT3;
//
//===============================================================
	// Program Begin
	goto	fpp0boot ;
	goto	fpp1boot ;
	goto	fpp2boot ;
	goto	fpp3boot ;
	goto	fpp4boot ;
	goto	fpp5boot ;
	goto	fpp6boot ;
	goto	fpp7boot ;

//========= start MCU0 program ============//
fpp0boot:
	set0	clkmd.1;		// turn-off watchdog
//------Low clock switch to High clock---------------------------------------
	mov		a, 0xD0;
	mov		eoscr, a;	//External OSCillator Register
						// bit-0:	1=Enable XTAL Smith trigger strong mode
						//			0=Disable XTAL Smith trigger strong mode
						// bit-1:	1=Enable XTAL Smith trigger
						//			0=Disable XTAL Smith trigger
						// bit4-2:	Option of driving strength in crystal oscillator
						// bit6-5:	00=External RC oscillator
						//			01=32KHz crystal oscillator
						//			10=4Mhz crystal oscillator
						//			11=20MHz crystal oscillator
						// bit7:	1=Enable external RC oscillator or crystal oscillator
						//			0=Disable external RC oscillator or crystal oscillator
	delay	0xFF;		// internal 32KHz need delay 30m/S
	delay	0xFF;		// internal 32KHz need delay 30m/S
	delay	0xFF;		// internal 32KHz need delay 30m/S
	delay	0xFF;		// internal 32KHz need delay 30m/S
	delay	0xFF;		// internal 32KHz need delay 30m/S
	delay	0xFF;		// internal 32KHz need delay 30m/S
						// external 20MHz need delay 1m/S
	//--						
	mov		a, 0xA4;	// select External 4MHz Crystal Clock!
	mov		clkmd, a; 	// Internal Low RC, Watch Dog disable,
						// bit-0:	Reset Function
						// bit-1:	1=Enable Watch Dog (default)
						//			0=Disable Watch Dog
						// bit-2:	1=Enable Internal Low RC (default)
						//			0=Disable Internal Low RC
						// bit-3:	No Used
						// bit-4:	1=Enable Internal High RC (default)
						//			0=Disable Internal High RC 
						// bit-7~5:	000=internal high RC/4
						//			001=internal high RC/2
						//			010=internal high RC
						//			011=external OSC/4
						//			100=external OSC/2
						//			101=external OSC
						//			110=internal low RC/4
						//			111=internal low RC (default)
//------Low clock switch to High clock End-----------------------------------
	delay	0x40 ;		//
	// Stack Pointer Setting for Processor-0
	mov		a, 0xD0 ;
	mov		sp, a ;	
	//---	
	//-- Clear Internal RAM ---	
	mov		a, 0x7f;
	mov		lb@RAMindex, a;	
	mov		a, 0x00;
	mov		hb@RAMindex, a;
ClearRAMLoop:
	wdreset;
	idxm	RAMindex, a;
	dzsn	lb@RAMindex;	
	goto	ClearRAMLoop;	 		
	//--- initial the I/O Pin
	//---- ALL of PORT A assign as Output port, for debug using!
	//---Assign PA.1 is Infra-Red Input
	mov	a, 0x1e;		// 
	mov	pac, a ;		// PA output,beside the PA.1 
	mov	a, 0xff ;
	mov	pa, a ;
	//---- ALL of PORT B assign as Output port
	mov	a, 0xfd ;		// pb.1:IR input, 
	mov	pbc, a ;		// PB output, beside PB.0 is input(SDI), 
	mov	a, 0x00 ;		// assign PB port initial status, PB.1 is Tx
	mov	pb, a ;			// 
	//---- ALL of PORT C assign as Output port, for debug using!
	mov	a, 0xcb ;		// pc.4:Rx1, pc.5:Rx0, pc.2:Key SW2,
	mov	pcc, a ;		// 
	mov	a, 0xf4 ;		// pc.3/pc.1/pc.0 default are low for servo Motor control
	mov	pc, a ;
	//---- ALL of PORT D assign as Motor Control and PS2 
	mov	a, 0xff ;		// 
	mov	pdc, a ;		// PD output, all LEDs off
	mov	a, 0x00 ;
	mov	pd, a ;
	//---- ALL of PORT E assign as LCM Nibble Bus 
	mov	a, 0xff ;		// Low Nibble as Motor Control High Nibble as PS2 input
	mov	pec, a ;		// PD output, all LEDs off
	mov	a, 0x09 ;
	mov	pe, a ;
	
	//--
	//---- ALL of PORT D assign as Output port, for debug using!
	//---- PORT D assign as Output port, exception PD.0
	//----PD.0: IR input, PD.1: R/W, PD.2: En, PD3: RS
	//----PD.4~PD.7: Data 0~3 (Processor #2)
//	mov	a, 0xfe ;		// PD.0 reserved for InfraRed input(Processor #3)
//	mov	pdc, a ;		// PD output, all LEDs off
//	mov	a, 0x00 ;
//	mov	pd, a ;	
	//Each Processor(MCU) Enable/Disable and Operational mode selection
	//---- Select the resource share between of MCUs
	pmode	0x02;		// Use MCU0 and MCU1 as prime function demonstrations
						//Mode:	MCU0 MCU1 MCU2 MCU3 MCU4 MCU5 MCU6 MCU7 Bandwidth sharing
						//  0	 /2   /8   /16  /16  /16  /16  /16  /16 
						//  1    /4   /4   /8   /8   /16  /16  /16  /16
						//  2    /8   /8   /8   /8   /8   /8   /8   /8
						//  3    /2   /8   /8   /8   /8    X    X    X
						//  4    /4   /4   /4   /8   /8    X    X    X
						//  5    /4   /4   /4   /4	  X	   X	X	 X	
						//  6    /16  /2   /8   /16  /16  /16  /16  /16 
						//  7    /8   /2   /8   /8   /8	   X	X	 X	
	mov		a, Tx0Bset;	// adjument the I/O delay clock for match required Baudrate
	mov		Tx0Baud, a;	// 
	//--
	mov		a, Tx1Bset;	// adjument the I/O delay clock for match required Baudrate
	mov		Tx1Baud, a;	// 
	//--
	clear	UARTCt;		// initail UART Control flag
	clear	UARTSt;		// initail UART Status flag
	//		
	//---	
Show_WelcomString:	
	mov		a, la@ASCIITab ;		// ASCII String table 
	mov		lb@TxStrPt, a ;
	mov		a, ha@ASCIITab ;
	mov		hb@TxStrPt, a ;
	//
	//-- TX Code Bank Strings--
	ldtabl  TxStrPt ;		// read character from String Table 
TxNextByteDataLoop:
	mov		GR0, a;
	mov		Tx0Buf, a ;
	call	Tx0putc;
	mov		a, GR0;
	mov		Tx1Buf, a ;
	call	Tx1putc;
	inc		lb@TxStrPt;
	ldtabl  TxStrPt ;
	ceqsn   a, 0 ;		// End of String table ?
	goto	TxNextByteDataLoop ;
	//--- 
	call	Tx0Printf_LFCR;		// 
	call	Tx1Printf_LFCR;		// 
	// enable another Processors
	mov		a, 0x03;
	mov		fppen, a;		// enable processor 1
	//----	Add other application code for Processor 0
	//*************************************************************
	//------ Processor-0 Program routine  ------------------
	//*************************************************************
	//	Processor Demo is handle the LED sequencer Flasher 
	//  the LED Sequence is based on the definition of Table !
	//---- Processor 1 Running in 500KHz ----
	//--
//int		LED_PWMBase;
	mov		a, 0x80;
	mov		LED_Rpwm, a;		// LED R PWM
	mov		LED_Gpwm, a;		// LED G PWM
	mov 	LED_Bpwm, a;		// LED B PWM
fpp0MainLoop:	
	clear	LED_PWMBase;
	//---PWM Control
LEDPWM_BeginLoop:	
	set1	pd.7;		// debug
	//-- R Segment --
	set1	LEDr;		// LED R PWM
	set1	LEDg;		// LED G PWM
	set1	LEDb;		// LED B PWM
	mov		a, LED_PWMBase;
LEDPWM_CheckLoop:	
	ceqsn	a, LED_Rpwm;
	goto	GreenPWMCheck;
	// R LED Match --
	set0	LEDr;
GreenPWMCheck:
	ceqsn	a, LED_Gpwm;
	goto	BluePWMCheck;
	// G LED Match --
	set0	LEDg;
BluePWMCheck:
	ceqsn	a, LED_Bpwm;
	goto	AllPWMChecked;
	// B LED Match --
	set0	LEDb;
AllPWMChecked:
	delay	0x1A;
	inc		LED_PWMBase;
	mov		a, LED_PWMBase;
	ceqsn	a, 0x00;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品一区在线观看| 亚洲成国产人片在线观看| 2欧美一区二区三区在线观看视频| 欧美男女性生活在线直播观看| 欧美伊人久久久久久久久影院| 99精品视频在线播放观看| 成人在线视频首页| 国内精品视频一区二区三区八戒| 国产在线精品一区二区夜色 | 国产精品另类一区| 国产日韩欧美在线一区| 欧美国产日产图区| 中文字幕一区二区三区av| 成人欧美一区二区三区| 国产精品久久久久影视| 亚洲伦理在线精品| 午夜精品久久久久久久久久| 午夜在线电影亚洲一区| 美腿丝袜亚洲色图| 国产精品一区二区在线播放 | 精品1区2区3区| 337p亚洲精品色噜噜| 91精品国产手机| 久久综合中文字幕| 国产精品久久久久久久久图文区| 国产精品二三区| 亚洲国产精品一区二区尤物区| 日本不卡1234视频| 国产精品亚洲综合一区在线观看| 99久久精品99国产精品| 欧美性猛交一区二区三区精品| 欧美精品 日韩| 国产性天天综合网| 亚洲综合色视频| 免费观看久久久4p| 成人深夜在线观看| 精品婷婷伊人一区三区三| 欧美videos中文字幕| 中文乱码免费一区二区| 亚洲成人免费在线观看| 精品无人码麻豆乱码1区2区| www.久久久久久久久| 欧美二区三区的天堂| 久久精品夜夜夜夜久久| 亚洲综合色区另类av| 激情深爱一区二区| 色婷婷综合中文久久一本| 欧美成人精品1314www| 亚洲精品成人精品456| 蜜桃久久久久久| 91精彩视频在线| 久久伊人蜜桃av一区二区| 亚洲激情五月婷婷| 国产中文字幕一区| 欧美日韩久久久| 国产情人综合久久777777| 香蕉久久一区二区不卡无毒影院| 国产suv精品一区二区883| 欧美日韩激情一区| 亚洲欧洲精品成人久久奇米网| 日韩电影一区二区三区| 91视视频在线观看入口直接观看www | |精品福利一区二区三区| 日韩精品成人一区二区三区| www..com久久爱| 欧美电视剧在线观看完整版| 亚洲摸摸操操av| 国产综合色产在线精品| 欧美日韩一区二区三区免费看 | 一区二区三区久久久| 国产福利不卡视频| 69久久99精品久久久久婷婷| 亚洲图片激情小说| 国产精品影视天天线| 欧美日韩国产经典色站一区二区三区| 国产精品第五页| 国产成人免费高清| www国产精品av| 亚洲成a人v欧美综合天堂| 色婷婷国产精品| 亚洲欧洲综合另类| 成人av午夜影院| 久久精品日韩一区二区三区| 美女久久久精品| 69堂国产成人免费视频| 亚洲一区电影777| 91久久久免费一区二区| 综合精品久久久| bt欧美亚洲午夜电影天堂| 国产丝袜在线精品| 欧美精品日韩一区| 一区二区三区国产豹纹内裤在线 | 国产欧美日韩精品在线| 激情国产一区二区 | 亚洲永久精品国产| 色综合网站在线| 亚洲色图欧洲色图| 一本到不卡精品视频在线观看| 国产精品色眯眯| 成人h动漫精品| 国产精品久久久久久久久搜平片 | 国产精品77777| 久久久久久久综合日本| 国产伦理精品不卡| 国产日韩欧美精品电影三级在线| 国产高清无密码一区二区三区| 久久精品一区二区三区av| 国产不卡视频一区| 国产日产欧美一区| 懂色av一区二区三区蜜臀| 国产精品日韩成人| 91麻豆精东视频| 夜夜嗨av一区二区三区四季av| 在线一区二区三区四区| 亚洲一区在线看| 欧美精品色综合| 久久99最新地址| 国产午夜精品一区二区三区视频 | 国产不卡高清在线观看视频| 亚洲国产精品成人综合色在线婷婷| 国产成人激情av| 亚洲视频综合在线| 欧美亚洲综合色| 日韩经典中文字幕一区| 欧美xxxxxxxx| 99热精品一区二区| 亚洲综合激情网| 欧美va日韩va| 97久久超碰国产精品| 亚洲另类在线制服丝袜| 在线观看91av| 国产精品一区二区x88av| 亚洲婷婷综合色高清在线| 欧美日韩一本到| 国产九色sp调教91| 一区二区三区日韩欧美精品 | 日韩国产精品久久| www精品美女久久久tv| 99久久久久久99| 免费一级片91| 自拍偷拍亚洲欧美日韩| 欧美日韩国产高清一区二区| 国产精品一区二区久久不卡| 亚洲欧美一区二区不卡| 欧美一区二区网站| 丁香一区二区三区| 婷婷国产在线综合| 国产日产欧美一区| 欧美久久高跟鞋激| 高潮精品一区videoshd| 亚洲一区二区在线观看视频| 2014亚洲片线观看视频免费| 欧美在线你懂的| 国产成人久久精品77777最新版本| 一区二区在线观看免费| 精品国产百合女同互慰| 久久久91精品国产一区二区精品| 99视频精品在线| 久久激情综合网| 亚洲最色的网站| 国产精品丝袜久久久久久app| 4438亚洲最大| 色屁屁一区二区| 国产高清久久久久| 免费高清成人在线| 一区二区理论电影在线观看| 日本一区二区三区四区在线视频 | 自拍偷拍亚洲欧美日韩| 日韩精品在线一区| 欧美日韩一区中文字幕| www.亚洲激情.com| 国产一区二区免费在线| 日韩中文字幕一区二区三区| 最新欧美精品一区二区三区| 精品国产污网站| 欧美一区二区三区视频在线观看| 99精品久久只有精品| 国产一区二区按摩在线观看| 午夜影院在线观看欧美| 亚洲美女免费视频| 中文字幕乱码久久午夜不卡| 久久综合九色综合欧美就去吻 | 日本一区二区三区国色天香| 欧美一级片在线看| 欧美日韩一级黄| 在线看国产一区二区| 99热国产精品| 粉嫩av一区二区三区粉嫩| 国内精品国产成人| 久久激情五月婷婷| 老司机免费视频一区二区| 丝袜美腿亚洲一区| 亚洲成av人片一区二区三区 | gogo大胆日本视频一区| 国产一区二区91| 国产在线不卡一区| 久久不见久久见免费视频7| 美女任你摸久久| 久88久久88久久久| 精品午夜一区二区三区在线观看|