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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? memory.c

?? 一個Jtag調(diào)試仿真程序
?? C
字號:
/*
 * system.c:	implement the routes used to access memory under
 *				DEBUG state.
 *
 * Copyright (C) 2004, OPEN-JTAG, All rights reserved.
 */

#include <windows.h>
#include "../types.h"
#include "../xjerr.h"
#include "../tapctrl.h"
#include "arm7tdmi.h"

/*
 * To meet the dynamic timing requirements of the memory system, any attempt to 
 * access system state must occur synchronously to it. The ARM7TDMI core must 
 * be forced to synchronize back to MCLK. This is controlled by bit 33 (BREAKPT)
 * of scan chain 1. 
 *
 * After a system-speed instruction has been scanned into the data bus and 
 * clocked into the pipeline, the RESTART instruction must be loaded into the TAP
 * controller. This causes the ARM7TDMI core to behave as follows:
 *	1. The ARM7TDMI core automatically synchronizes back to MCLK;
 *	2. It executes the instruction at system speed;
 *	3. It re-enters debug state.
 */




/*
 * arm7tdmi_mem_rd8() - 
 *		used to read memory at 8-bit width
 *
 *		@addr: address of memory to be read from
 *		@buf:  buf used to store the content read from memory
 *		@len:  lenngth in terms of 8-bit byte to be read
 */
int arm7tdmi_mem_rd8(u32 addr, u8 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);


	//Read memory ...
	for(counter = 0; counter < len; counter++){
		//put the address to be read to RO
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//LDRB R1, [R0] = 0xE5D01000
		shift_in[0] = 0xE5D01000;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STRB R1, [R1] = 0xE5C11000
		shift_in[0] = 0xE5C11000;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//NOP x 3
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//Update buffer and address
		*buf = (u8)shift_out[0];
		buf += 1;
		addr += 1;

	}

	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_wri8() - 
 *		used to wri memory at 8-bit width
 *
 *		@addr: destination address of memory to be written
 *		@buf:  point to the content to be written
 *		@len:  lenngth in terms of 8-bit byte to be written
 */
int arm7tdmi_mem_wri8(u32 addr, const u8 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];
	
	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);


	//Write memory ...
	for(counter = 0; counter < len; counter++){
		//put the address into R0
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//put the new value into R1
		arm7tdmi_core_wri_reg(ARM7TDMI_R1, *buf);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STRB R1, [R0] = 0xE5C01000
		shift_in[0] = 0xE5C01000;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		
		//Update address and buffer
		addr += 1;
		buf += 1;
	}


	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_rd16() - 
 *		used to read memory at 16-bit width
 *
 *		@addr: address of memory to be read from
 *		@buf:  buf used to store the content read from memory
 *		@len:  lenngth in terms of 16-bit byte to be read
 */
int arm7tdmi_mem_rd16(u32 addr, u16 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	/* 
	 * Shape the address to make sure that the least significant 
	 * 1 bit of addr is zero.
	 */
	addr &= 0xFFFFFFFE;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);

	//Read memory ...
	for(counter = 0; counter < len; counter++){
		//put the address to be read to RO
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//LDRH R1, [R0] = 0xE1D010B0
		shift_in[0] = 0xE1D010B0;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STRH R1, [R1] = 0xE1C110B0
		shift_in[0] = 0xE1C110B0;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//NOP x 3
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//Update buffer and address
		*buf = (u16)shift_out[0];
		buf += 1;
		addr += 2;
	}

	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_wri16() - 
 *		used to wri memory at 16-bit width
 *
 *		@addr: destination address of memory to be written
 *		@buf:  point to the content to be written
 *		@len:  lenngth in terms of 16-bit byte to be written
 */
int arm7tdmi_mem_wri16(u32 addr, const u16 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	/* 
	 * Shape the address to make sure that the least significant 
	 * 1 bit of addr is zero.
	 */
	addr &= 0xFFFFFFFE;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);


	//Write memory ...
	for(counter = 0; counter < len; counter++){
		//put the address into R0
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//put the new value into R1
		arm7tdmi_core_wri_reg(ARM7TDMI_R1, *buf);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STRH R1, [R0] = 0xE1C010B0
		shift_in[0] = 0xE1C010B0;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		
		//Update address and buffer
		addr += 2;
		buf += 1;
	}


	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_rd32() - 
 *		used to read memory at 32-bit width
 *
 *		@addr: address of memory to be read from
 *		@buf:  buf used to store the content read from memory
 *		@len:  lenngth in terms of 32-bit byte to be read
 */
int arm7tdmi_mem_rd32(u32 addr, u32 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	/* 
	 * Shape the address to make sure that the least significant 
	 * 2 bits of addr are zero.
	 */
	addr &= 0xFFFFFFFC;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);

	//Read memory ...
	for(counter = 0; counter < len; counter++){
		//put the address to be read to RO
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//LDR R1, [R0] = 0xE5901000
		shift_in[0] = 0xE5901000;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STR R1, [R1] = 0xE5811000
		shift_in[0] = 0xE5811000;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//NOP x 3
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//Update buffer and address
		*buf = shift_out[0];
		buf += 1;
		addr += 4;
	}

	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}


/*
 * arm7tdmi_mem_wri32() - 
 *		used to wri memory at 32-bit width
 *
 *		@addr: destination address of memory to be written
 *		@buf:  point to the content to be written
 *		@len:  lenngth in terms of 32-bit byte to be written
 */
int arm7tdmi_mem_wri32(u32 addr, const u32 *buf, int len)
{
	int status;
	int counter;
	u32 r0, r1;
	u32 shift_in[2];
	u32 shift_out[2];

	if(buf == NULL)
		return XJERR_INVALID_PARAMATER;

	//In DEBUG state?
	if(arm7tdmi_status.state != ARM7TDMI_DEBUG_STATE)
		return XJERR_TARGET_RUNNING;
	
	//Select scan chain 1
	status = arm7tdmi_connect_scanchain(1);
	if(status != XJ_OK)
		return status;

	/* 
	 * Shape the address to make sure that the least significant 
	 * 2 bits of addr are zero.
	 */
	addr &= 0xFFFFFFFC;

	//Backup R0 & R1 first
	arm7tdmi_core_rd_reg(ARM7TDMI_R0, &r0);
	arm7tdmi_core_rd_reg(ARM7TDMI_R1, &r1);


	//Write memory ...
	for(counter = 0; counter < len; counter++){
		//put the address into R0
		arm7tdmi_core_wri_reg(ARM7TDMI_R0, addr);

		//put the new value into R1
		arm7tdmi_core_wri_reg(ARM7TDMI_R1, *buf);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		/* 
		 * Set bit 33 of scan chain 1, next instruct 
		 * will be executed at system speed.
		 */
		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_SYSTEM_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		//STR R1, [R0] = 0xE5801000
		shift_in[0] = 0xE5801000;				
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);

		tapctrl_acs_ireg(JTAG_BYPASS);
		tapctrl_acs_ireg(JTAG_RESTART);
		tapctrl_acs_ireg(JTAG_INTEST);

		//NOP
		shift_in[0] = ARM7TDMI_NOP;
		shift_in[1] = ARM7TDMI_DEBUG_SPEED;
		arm7tdmi_acs_sc1(shift_in, shift_out);
		
		//Update address and buffer
		addr += 4;
		buf += 1;
	}


	//Restore R0 & R1 before exit
	arm7tdmi_core_wri_reg(ARM7TDMI_R0, r0);
	arm7tdmi_core_wri_reg(ARM7TDMI_R1, r1);

	return XJ_OK;
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
青青草成人在线观看| 26uuu色噜噜精品一区二区| 国产三级一区二区三区| 久久国产剧场电影| 精品久久人人做人人爰| 国产一区二区精品久久91| 久久青草国产手机看片福利盒子| 国产成人精品一区二| 中文字幕av资源一区| 91在线视频网址| 亚洲国产成人av网| 日韩一区二区免费在线电影| 久久se这里有精品| 国产精品久久久99| 91视频免费播放| 五月婷婷综合激情| 精品久久人人做人人爽| 成人av资源站| 亚洲狠狠爱一区二区三区| 日韩欧美亚洲一区二区| 国产精一品亚洲二区在线视频| 综合自拍亚洲综合图不卡区| 欧美视频在线观看一区二区| 久久国产综合精品| 亚洲男人电影天堂| 欧美另类变人与禽xxxxx| 美国精品在线观看| 亚洲天堂免费看| 日韩欧美色综合| a在线欧美一区| 免费xxxx性欧美18vr| 国产精品福利一区| 51午夜精品国产| 国产成人免费9x9x人网站视频| 一区二区成人在线| 国产三级一区二区| 欧美精品第1页| 99久久国产免费看| 开心九九激情九九欧美日韩精美视频电影| 国产欧美精品国产国产专区| 欧美性受xxxx| 国产精品99久久久久久有的能看 | 国产欧美日韩不卡| 欧美日韩一区视频| 成人一区在线观看| 蜜臀久久久久久久| 亚洲男女毛片无遮挡| 制服丝袜亚洲色图| 91久久香蕉国产日韩欧美9色| 狠狠色狠狠色合久久伊人| 亚洲嫩草精品久久| 国产亚洲欧美在线| 日韩精品一区二区三区视频播放| 色综合久久综合网欧美综合网| 国内精品免费在线观看| 日韩精品五月天| 亚洲主播在线播放| 中文字幕在线观看一区| 久久久国产综合精品女国产盗摄| 欧美高清一级片在线| 91福利在线免费观看| 成人三级在线视频| 国产精品一线二线三线| 久久精品国产一区二区三区免费看 | 91精品国产入口在线| 色94色欧美sute亚洲线路一ni | 国产成人精品亚洲777人妖| 日本不卡视频在线| 亚洲.国产.中文慕字在线| 亚洲欧美怡红院| 国产精品美女久久久久久2018 | 国产女人水真多18毛片18精品视频| 欧美一区二区精品| 91精品国产麻豆| 欧美精品久久久久久久多人混战| 欧美午夜一区二区三区| 在线一区二区视频| 欧洲一区在线观看| 欧美亚洲丝袜传媒另类| 色欧美日韩亚洲| 91国产丝袜在线播放| 色呦呦日韩精品| 在线精品视频免费播放| 在线视频一区二区三区| 在线观看一区二区精品视频| 欧美一级黄色录像| 日韩欧美一二三四区| 欧美r级在线观看| 久久久久久久久久看片| 久久久蜜桃精品| 国产精品女主播av| 亚洲人亚洲人成电影网站色| 亚洲九九爱视频| 午夜伊人狠狠久久| 日本不卡123| 国产精品一区免费视频| 成人午夜又粗又硬又大| 91香蕉视频在线| 欧美亚日韩国产aⅴ精品中极品| 欧美日韩在线不卡| 日韩小视频在线观看专区| 久久久三级国产网站| 中文字幕国产一区| 亚洲自拍偷拍综合| 老司机精品视频导航| 国产精品99久久久久久似苏梦涵| 成人av影院在线| 欧美三区在线视频| 久久你懂得1024| 综合激情成人伊人| 水野朝阳av一区二区三区| 免费精品视频最新在线| 成人小视频在线观看| 在线观看91精品国产入口| 日韩一区二区三免费高清| 国产精品伦理一区二区| 亚洲电影一级黄| 国产精品亚洲综合一区在线观看| 91久久精品日日躁夜夜躁欧美| 欧美一区二区三区免费大片| 欧美经典三级视频一区二区三区| 一区二区三国产精华液| 国产最新精品免费| 在线观看一区日韩| 欧美经典一区二区| 三级在线观看一区二区 | 国模套图日韩精品一区二区| 丰满亚洲少妇av| 欧美日韩成人高清| 国产精品久久久久桃色tv| 午夜天堂影视香蕉久久| 成人国产精品免费| 日韩免费电影网站| 亚洲精品国产精华液| 国产主播一区二区| 欧美三级资源在线| 国产精品麻豆欧美日韩ww| 美女网站色91| 欧美丝袜第三区| 亚洲欧美视频在线观看视频| 国产综合色产在线精品| 欧美日韩综合色| 亚洲视频在线观看一区| 国产一区二区导航在线播放| 欧美高清性hdvideosex| 亚洲精品成人悠悠色影视| 国产九色sp调教91| 精品国产一区二区三区四区四| 亚洲 欧美综合在线网络| 91在线播放网址| 中文字幕精品在线不卡| 极品少妇xxxx精品少妇偷拍| 91精品婷婷国产综合久久性色| 一区二区三区日韩欧美| 不卡的av电影在线观看| 国产欧美一区二区三区网站| 久久国产尿小便嘘嘘| 欧美精品一卡二卡| 亚洲无人区一区| 在线视频国内自拍亚洲视频| 亚洲欧美在线观看| 99久久精品国产观看| 国产精品美女一区二区| 成人国产精品免费| 国产精品福利一区二区三区| 丁香桃色午夜亚洲一区二区三区| 精品日韩在线观看| 老司机精品视频一区二区三区| 在线播放日韩导航| 奇米888四色在线精品| 欧美一区二区在线视频| 日本一道高清亚洲日美韩| 91麻豆精品国产91久久久更新时间 | 一区二区欧美国产| 91国偷自产一区二区三区成为亚洲经典 | 国产午夜精品久久久久久久| 狠狠色丁香久久婷婷综合_中| 欧美成人一级视频| 久久99精品国产91久久来源| 日韩欧美二区三区| 国产精品自拍av| 专区另类欧美日韩| 欧美最猛黑人xxxxx猛交| 夜夜操天天操亚洲| 6080亚洲精品一区二区| 久99久精品视频免费观看| ww久久中文字幕| 不卡一区中文字幕| 亚洲激情五月婷婷| 制服丝袜亚洲精品中文字幕| 精品一区二区三区香蕉蜜桃| 久久久不卡影院| 91丨porny丨最新| 五月婷婷色综合| 久久综合久色欧美综合狠狠| 国产九九视频一区二区三区| 亚洲色图第一区| 欧美电影在哪看比较好| 国产精品一区二区在线观看网站| 日韩美女啊v在线免费观看|