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

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

?? prehisle.c

?? 這個是延伸mame的在wince平臺下的游戲模擬器的代碼
?? C
字號:
/***************************************************************************

	Prehistoric Isle in 1930 (World)		(c) 1989 SNK
	Prehistoric Isle in 1930 (USA)			(c) 1989 SNK
	Genshi-Tou 1930's (Japan)				(c) 1989 SNK


	Ikari 3 should run on hardware close to this.

 	Emulation by Bryan McPhail, mish@tendril.force9.net

***************************************************************************/

#include "driver.h"
#include "vidhrdw/generic.h"
#include "Z80/z80.h"

void prehisle_vh_screenrefresh(struct osd_bitmap *bitmap, int full_refresh);
void prehisle_video_w(int offset,int data);
int prehisle_control_r(int offset);
void prehisle_control_w(int offset,int data);
int prehisle_video_r(int offset);
void prehisle_vh_stop (void);
int prehisle_vh_start (void);

static unsigned char *prehisle_ram;
unsigned char *prehisle_video;

/******************************************************************************/

static void prehisle_sound_w(int offset, int data)
{
	soundlatch_w(0,data&0xff);
	cpu_cause_interrupt(1,Z80_NMI_INT);
}

/*******************************************************************************/

static struct MemoryReadAddress prehisle_readmem[] =
{
	{ 0x000000, 0x03ffff, MRA_ROM },
	{ 0x070000, 0x073fff, MRA_BANK1 },
	{ 0x090000, 0x0907ff, MRA_BANK4 },
	{ 0x0a0000, 0x0a07ff, MRA_BANK5 },
	{ 0x0b0000, 0x0b3fff, prehisle_video_r },
	{ 0x0d0000, 0x0d07ff, paletteram_word_r },
	{ 0x0e0000, 0x0e00ff, prehisle_control_r },
	{ -1 }  /* end of table */
};

static struct MemoryWriteAddress prehisle_writemem[] =
{
	{ 0x000000, 0x03ffff, MWA_ROM },
	{ 0x070000, 0x073fff, MWA_BANK1, &prehisle_ram },
	{ 0x090000, 0x0907ff, MWA_BANK4, &videoram },
	{ 0x0a0000, 0x0a07ff, MWA_BANK5, &spriteram },
	{ 0x0b0000, 0x0b3fff, prehisle_video_w, &prehisle_video },
	{ 0x0d0000, 0x0d07ff, paletteram_RRRRGGGGBBBBxxxx_word_w, &paletteram },
	{ 0x0f0070, 0x0ff071, prehisle_sound_w },
	{ 0x0f0000, 0x0ff0ff, prehisle_control_w },
	{ -1 }  /* end of table */
};

/******************************************************************************/

static void D7759_write_port_0_w(int offset, int data)
{
	UPD7759_reset_w (0,0);
	UPD7759_message_w(offset,data);
	UPD7759_start_w (0,1);
}

static struct MemoryReadAddress prehisle_sound_readmem[] =
{
	{ 0x0000, 0xefff, MRA_ROM },
	{ 0xf000, 0xf7ff, MRA_RAM },
	{ 0xf800, 0xf800, soundlatch_r },
	{ -1 }	/* end of table */
};

static struct MemoryWriteAddress prehisle_sound_writemem[] =
{
	{ 0x0000, 0xefff, MWA_ROM },
	{ 0xf000, 0xf7ff, MWA_RAM },
	{ -1 }	/* end of table */
};

static struct IOReadPort prehisle_sound_readport[] =
{
	{ 0x00, 0x00, YM3812_status_port_0_r },
	{ -1 }
};

static struct IOWritePort prehisle_sound_writeport[] =
{
	{ 0x00, 0x00, YM3812_control_port_0_w },
	{ 0x20, 0x20, YM3812_write_port_0_w },
	{ 0x40, 0x40, D7759_write_port_0_w},
	{ 0x80, 0x80, MWA_NOP }, /* IRQ ack? */
	{ -1 }
};

/******************************************************************************/

INPUT_PORTS_START( prehisle_input_ports )
	PORT_START	/* Player 1 controls */
	PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_UP | IPF_8WAY )
	PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN | IPF_8WAY )
	PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT | IPF_8WAY )
	PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT | IPF_8WAY )
	PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 )
	PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 )
	PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON3 )
	PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_START1 )

	PORT_START	/* Player 2 controls */
	PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_UP | IPF_8WAY | IPF_PLAYER2 )
	PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN | IPF_8WAY | IPF_PLAYER2 )
	PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT | IPF_8WAY | IPF_PLAYER2 )
	PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT | IPF_8WAY | IPF_PLAYER2 )
	PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 | IPF_PLAYER2 )
	PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 | IPF_PLAYER2 )
	PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON3 | IPF_PLAYER2 )
	PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_START2  )

	PORT_START	/* coin */
	PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 )
	PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN2 )
	PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_COIN3 )
	PORT_BITX(0x08, IP_ACTIVE_LOW, IPT_SERVICE, DEF_STR( Service_Mode ), OSD_KEY_F2, IP_JOY_NONE )
	PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_TILT )
	PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNKNOWN )
	PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNKNOWN )
	PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN )

	PORT_START	/* Dip switches */
	PORT_DIPNAME( 0x01, 0x01, DEF_STR( Flip_Screen ) )
	PORT_DIPSETTING(    0x01, DEF_STR( Off ) )
	PORT_DIPSETTING(    0x00, DEF_STR( On ) )
	PORT_DIPNAME( 0x02, 0x02, DEF_STR( Unknown ) )
	PORT_DIPSETTING(    0x02, DEF_STR( Off ) )
	PORT_DIPSETTING(    0x00, DEF_STR( On ) )
	PORT_DIPNAME( 0x04, 0x04, DEF_STR( Bonus_Life ) )
	PORT_DIPSETTING(    0x04, "Only Twice" )
	PORT_DIPSETTING(    0x00, "Always" )
	PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unknown ) )
	PORT_DIPSETTING(    0x08, DEF_STR( Off ) )
	PORT_DIPSETTING(    0x00, DEF_STR( On ) )
	PORT_DIPNAME( 0x30, 0x30, DEF_STR( Coinage ) )
	PORT_DIPSETTING(    0x30, DEF_STR( 1C_1C ) )
	PORT_DIPSETTING(    0x20, "A 2/1 B 1/2" )
	PORT_DIPSETTING(    0x10, "A 3/1 B 1/3" )
	PORT_DIPSETTING(    0x00, "A 4/1 B 1/4" )
	PORT_DIPNAME( 0xc0, 0xc0, DEF_STR( Lives ) )
	PORT_DIPSETTING(    0x80, "2" )
	PORT_DIPSETTING(    0xc0, "3" )
	PORT_DIPSETTING(    0x40, "4" )
	PORT_DIPSETTING(    0x00, "5" )

	PORT_START
	PORT_DIPNAME( 0x03, 0x03, DEF_STR( Difficulty ) )
	PORT_DIPSETTING(    0x02, "Easy" )
	PORT_DIPSETTING(    0x03, "Normal" )
	PORT_DIPSETTING(    0x01, "Hard" )
	PORT_DIPSETTING(    0x00, "Hardest" )
	PORT_DIPNAME( 0x0c, 0x0c, "Demo" )
	PORT_DIPSETTING(    0x08, "Sound Off" )
	PORT_DIPSETTING(    0x0c, "Sound On" )
	PORT_DIPSETTING(    0x00, "Freeze" )
	PORT_BITX( 0,       0x04, IPT_DIPSWITCH_SETTING | IPF_CHEAT, "Infinite Lives", IP_KEY_NONE, IP_JOY_NONE )
	PORT_DIPNAME( 0x30, 0x30, DEF_STR( Bonus_Life ) )
	PORT_DIPSETTING(    0x30, "100000 200000" )
	PORT_DIPSETTING(    0x20, "150000 300000" )
	PORT_DIPSETTING(    0x10, "300000 500000" )
	PORT_DIPSETTING(    0x00, "None" )
	PORT_DIPNAME( 0x40, 0x40, "Allow Continue" )
	PORT_DIPSETTING(    0x00, DEF_STR( No ) )
	PORT_DIPSETTING(    0x40, DEF_STR( Yes ) )
	PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_VBLANK )
INPUT_PORTS_END

/******************************************************************************/

static struct GfxLayout charlayout =
{
	8,8,    /* 8*8 characters */
	1024,
	4,      /* 4 bits per pixel */
	{ 0, 1, 2, 3 },
	{ 0, 4, 8, 12, 16, 20, 24, 28},
	{ 0*32, 1*32, 2*32, 3*32, 4*32, 5*32, 6*32, 7*32 },
	32*8    /* every char takes 32 consecutive bytes */
};

static struct GfxLayout tilelayout =
{
	16,16,	/* 16*16 sprites */
	0x800,
	4,	/* 4 bits per pixel */
	{ 0, 1, 2, 3 },
	{ 0,4,8,12,16,20,24,28,
		0+64*8,4+64*8,8+64*8,12+64*8,16+64*8,20+64*8,24+64*8,28+64*8 },
	{ 0*32, 1*32, 2*32, 3*32, 4*32, 5*32, 6*32, 7*32,
		8*32, 9*32, 10*32, 11*32, 12*32, 13*32, 14*32, 15*32 },
	128*8	/* every sprite takes 64 consecutive bytes */
};

static struct GfxLayout spritelayout =
{
	16,16,	/* 16*16 sprites */
	5120,
	4,	/* 4 bits per pixel */
	{ 0, 1, 2, 3 },
	{ 0,4,8,12,16,20,24,28,
		0+64*8,4+64*8,8+64*8,12+64*8,16+64*8,20+64*8,24+64*8,28+64*8 },
	{ 0*32, 1*32, 2*32, 3*32, 4*32, 5*32, 6*32, 7*32,
		8*32, 9*32, 10*32, 11*32, 12*32, 13*32, 14*32, 15*32 },
	128*8	/* every sprite takes 64 consecutive bytes */
};

static struct GfxDecodeInfo gfxdecodeinfo[] =
{
	{ 1, 0x000000, &charlayout,   0, 16 },
	{ 1, 0x008000, &tilelayout, 768, 16 },
	{ 1, 0x048000, &tilelayout, 512, 16 },
	{ 1, 0x088000, &spritelayout, 256, 16 },
	{ -1 } /* end of array */
};

/******************************************************************************/

static struct YM3812interface ym3812_interface =
{
	1,			/* 1 chip (no more supported) */
	4000000,	/* 4 Mhz */
	{ 20 }		/* (not supported) */
};

static struct UPD7759_interface upd7759_interface =
{
	1,		/* number of chips */
	UPD7759_STANDARD_CLOCK,
	{ 75 }, /* volume */
	3,		/* memory region */
	UPD7759_STANDALONE_MODE,		/* chip mode */
	{0}
};

/******************************************************************************/

static struct MachineDriver prehisle_machine_driver =
{
	/* basic machine hardware */
	{
 		{
			CPU_M68000,
			12000000,
			0,
			prehisle_readmem,prehisle_writemem,0,0,
			m68_level4_irq,1
		},
		{
			CPU_Z80 | CPU_AUDIO_CPU,
			4000000,
			2,
			prehisle_sound_readmem,prehisle_sound_writemem,
			prehisle_sound_readport,prehisle_sound_writeport,
			interrupt,1
		}
	},
	60, DEFAULT_REAL_60HZ_VBLANK_DURATION,
	1,
	0,

	/* video hardware */
	32*8, 32*8, { 0*8, 32*8-1, 2*8, 30*8-1 },

	gfxdecodeinfo,
	1024, 1024,
	0,

	VIDEO_TYPE_RASTER | VIDEO_MODIFIES_PALETTE,
	0,
	prehisle_vh_start,
	prehisle_vh_stop,
	prehisle_vh_screenrefresh,

	/* sound hardware */
	0,0,0,0,
	{
		{
			SOUND_YM3812,
			&ym3812_interface
		},
		{
			SOUND_UPD7759,
			&upd7759_interface
		}
	}
};

/******************************************************************************/

ROM_START( prehisle_rom )
	ROM_REGION(0x40000)
	ROM_LOAD_EVEN( "gt.2", 0x00000, 0x20000, 0x7083245a )
	ROM_LOAD_ODD ( "gt.3", 0x00000, 0x20000, 0x6d8cdf58 )

	ROM_REGION_DISPOSE(0x128000)	/* temporary space for graphics (disposed after conversion) */
	ROM_LOAD( "gt15.b15",   0x000000, 0x08000, 0xac652412 )
	ROM_LOAD( "pi8914.b14", 0x008000, 0x40000, 0x207d6187 )
	ROM_LOAD( "pi8916.h16", 0x048000, 0x40000, 0x7cffe0f6 )
	ROM_LOAD( "pi8910.k14", 0x088000, 0x80000, 0x5a101b0b )
	ROM_LOAD( "gt.5",       0x108000, 0x20000, 0x3d3ab273 )

	ROM_REGION(0x10000)	/* Sound CPU */
	ROM_LOAD( "gt.1",  0x000000, 0x10000, 0x80a4c093 )

	ROM_REGION(0x20000)	/* ADPCM samples */
	ROM_LOAD( "gt.4",  0x000000, 0x20000, 0x85dfb9ec )

	ROM_REGION(0x10000) /* Tile map */
	ROM_LOAD( "gt.11",  0x000000, 0x10000, 0xb4f0fcf0 )
ROM_END

ROM_START( prehislu_rom )
	ROM_REGION(0x40000)
	ROM_LOAD_EVEN( "gt-u2.2h", 0x00000, 0x20000, 0xa14f49bb )
	ROM_LOAD_ODD ( "gt-u3.3h", 0x00000, 0x20000, 0xf165757e )

	ROM_REGION_DISPOSE(0x128000)	/* temporary space for graphics (disposed after conversion) */
	ROM_LOAD( "gt15.b15",   0x000000, 0x08000, 0xac652412 )
	ROM_LOAD( "pi8914.b14", 0x008000, 0x40000, 0x207d6187 )
	ROM_LOAD( "pi8916.h16", 0x048000, 0x40000, 0x7cffe0f6 )
	ROM_LOAD( "pi8910.k14", 0x088000, 0x80000, 0x5a101b0b )
	ROM_LOAD( "gt.5",       0x108000, 0x20000, 0x3d3ab273 )

	ROM_REGION(0x10000)	/* Sound CPU */
	ROM_LOAD( "gt.1",  0x000000, 0x10000, 0x80a4c093 )

	ROM_REGION(0x20000)	/* ADPCM samples */
	ROM_LOAD( "gt.4",  0x000000, 0x20000, 0x85dfb9ec )

	ROM_REGION(0x10000) /* Tile map */
	ROM_LOAD( "gt.11",  0x000000, 0x10000, 0xb4f0fcf0 )
ROM_END

ROM_START( prehislj_rom )
	ROM_REGION(0x40000)
	ROM_LOAD_EVEN( "gt2j.bin", 0x00000, 0x20000, 0xa2da0b6b )
	ROM_LOAD_ODD ( "gt3j.bin", 0x00000, 0x20000, 0xc1a0ae8e )

	ROM_REGION_DISPOSE(0x128000)	/* temporary space for graphics (disposed after conversion) */
	ROM_LOAD( "gt15.b15",   0x000000, 0x08000, 0xac652412 )
	ROM_LOAD( "pi8914.b14", 0x008000, 0x40000, 0x207d6187 )
	ROM_LOAD( "pi8916.h16", 0x048000, 0x40000, 0x7cffe0f6 )
	ROM_LOAD( "pi8910.k14", 0x088000, 0x80000, 0x5a101b0b )
	ROM_LOAD( "gt.5",       0x108000, 0x20000, 0x3d3ab273 )

	ROM_REGION(0x10000)	/* Sound CPU */
	ROM_LOAD( "gt.1",  0x000000, 0x10000, 0x80a4c093 )

	ROM_REGION(0x20000)	/* ADPCM samples */
	ROM_LOAD( "gt.4",  0x000000, 0x20000, 0x85dfb9ec )

	ROM_REGION(0x10000) /* Tile map */
	ROM_LOAD( "gt.11",  0x000000, 0x10000, 0xb4f0fcf0 )
ROM_END

/******************************************************************************/

static int world_cycle_r(int offset)
{
	int pc=cpu_get_pc();
	int ret=READ_WORD(&prehisle_ram[0x24]);

	if ((ret&0x8000) && (pc==0x260c || pc==0x268a || pc==0x2b0a || pc==0x34a8 || pc==0x6ae4 || pc==0x83ac || pc==0x25ce || pc==0x29c4)) {
		cpu_spinuntil_int();
		return ret&0x7fff;
	}
	return ret;
}

static void world_memory(void)
{
	install_mem_read_handler(0, 0x70024, 0x70025, world_cycle_r);
}

static int usa_cycle_r(int offset)
{
	int pc=cpu_get_pc();
	int ret=READ_WORD(&prehisle_ram[0x24]);

	if ((ret&0x8000) && (pc==0x281e || pc==0x28a6 || pc==0x295a || pc==0x2868 || pc==0x8f98 || pc==0x3b1e)) {
		cpu_spinuntil_int();
		return ret&0x7fff;
	}
	return ret;
}

static void usa_memory(void)
{
	install_mem_read_handler(0, 0x70024, 0x70025, usa_cycle_r);
}

static int jap_cycle_r(int offset)
{
	int pc=cpu_get_pc();
	int ret=READ_WORD(&prehisle_ram[0x24]);

	if ((ret&0x8000) && (pc==0x34b6 /* Todo! */ )) {
		cpu_spinuntil_int();
		return ret&0x7fff;
	}
	return ret;
}

static void jap_memory(void)
{
	install_mem_read_handler(0, 0x70024, 0x70025, jap_cycle_r);
}

/******************************************************************************/

struct GameDriver prehisle_driver =
{
	__FILE__,
	0,
	"prehisle",
	"Prehistoric Isle in 1930 (World)",
	"1989",
	"SNK Corp.",
	"Bryan McPhail\nCarlos Alberto Lozano Baides",
	0,
	&prehisle_machine_driver,
	world_memory,

	prehisle_rom,
	0, 0,
	0,
	0,

	prehisle_input_ports,

	0, 0, 0,   /* colors, palette, colortable */
	ORIENTATION_DEFAULT,
	0, 0
};

struct GameDriver prehislu_driver =
{
	__FILE__,
	&prehisle_driver,
	"prehislu",
	"Prehistoric Isle in 1930 (US)",
	"1989",
	"SNK Corp. of America",
	"Bryan McPhail\nCarlos Alberto Lozano Baides",
	0,
	&prehisle_machine_driver,
	usa_memory,

	prehislu_rom,
	0, 0,
	0,
	0,

	prehisle_input_ports,

	0, 0, 0,   /* colors, palette, colortable */
	ORIENTATION_DEFAULT,
	0, 0
};

struct GameDriver prehislj_driver =
{
	__FILE__,
	&prehisle_driver,
	"gensitou",
	"Genshi-Tou 1930's",
	"1989",
	"SNK Corp.",
	"Bryan McPhail\nCarlos Alberto Lozano Baides",
	0,
	&prehisle_machine_driver,
	jap_memory,

	prehislj_rom,
	0, 0,
	0,
	0,

	prehisle_input_ports,

	0, 0, 0,   /* colors, palette, colortable */
	ORIENTATION_DEFAULT,
	0, 0
};

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美在线影院一区二区| 蜜臀a∨国产成人精品| 福利91精品一区二区三区| 欧美va亚洲va在线观看蝴蝶网| 午夜电影久久久| 欧美日本韩国一区二区三区视频 | 韩国av一区二区| 精品福利一二区| 国产91在线|亚洲| 亚洲欧美影音先锋| 在线观看av一区| 五月开心婷婷久久| 精品欧美久久久| 国产成都精品91一区二区三| 国产欧美日韩在线看| 99久久综合狠狠综合久久| 亚洲精品高清在线观看| 911国产精品| 国产精品自拍三区| 中文字幕一区二| 欧美妇女性影城| 国产精品一区二区久激情瑜伽| 国产精品麻豆视频| 欧美日韩一级片网站| 精品一区二区在线观看| 中文字幕制服丝袜一区二区三区| 色噜噜狠狠成人中文综合| 日韩国产精品久久久久久亚洲| 久久久综合激的五月天| 欧美在线视频全部完| 在线看一区二区| 久久成人久久爱| 成人免费一区二区三区视频| 337p亚洲精品色噜噜噜| 国产福利91精品| 亚洲国产欧美一区二区三区丁香婷| 精品捆绑美女sm三区| 色综合天天性综合| 久久99精品久久久| 一区二区三区欧美视频| 久久久久久免费网| 欧美日本免费一区二区三区| www.日韩精品| 精品系列免费在线观看| 亚洲国产你懂的| 国产精品视频一二| 日韩欧美视频一区| 日本精品免费观看高清观看| 国产成人一级电影| 日韩av高清在线观看| 亚洲精品国产无天堂网2021| 久久久亚洲欧洲日产国码αv| 在线日韩av片| jizzjizzjizz欧美| 国产伦理精品不卡| 奇米影视一区二区三区小说| 亚洲一区欧美一区| 日韩一区欧美小说| 国产日韩欧美精品电影三级在线| 884aa四虎影成人精品一区| 色拍拍在线精品视频8848| 国产suv精品一区二区883| 日韩精品免费视频人成| 亚洲一区二区欧美日韩 | 欧美蜜桃一区二区三区| 91丨九色丨蝌蚪富婆spa| 粉嫩嫩av羞羞动漫久久久 | 久久精品亚洲麻豆av一区二区 | 免费不卡在线观看| 午夜视频在线观看一区| 亚洲一区视频在线| 亚洲综合另类小说| 一区二区三区不卡视频在线观看| 中文字幕国产精品一区二区| 国产亚洲一本大道中文在线| 久久精品在线免费观看| 国产日韩欧美在线一区| 久久精品一区二区三区不卡| 久久精品人人做人人爽97| 欧美电影免费观看高清完整版| 欧美一区二区美女| 亚洲精品久久久蜜桃| 国产精品入口麻豆原神| 久久久久久久久97黄色工厂| 久久久欧美精品sm网站| 久久精品一二三| 国产精品免费视频一区| 亚洲视频中文字幕| 亚洲视频一二三| 一区二区三区欧美久久| 亚洲第一成年网| 日本 国产 欧美色综合| 久久99国产精品尤物| 国产九九视频一区二区三区| 丁香婷婷综合激情五月色| 99精品视频免费在线观看| 一本到不卡免费一区二区| 欧美三区免费完整视频在线观看| 欧美日韩美女一区二区| 91精品国产欧美一区二区| 欧美成人精品福利| 中文字幕欧美日韩一区| 亚洲视频在线一区二区| 五月综合激情婷婷六月色窝| 美女性感视频久久| 成人免费视频网站在线观看| 91福利在线免费观看| 欧美精品视频www在线观看| 日韩免费一区二区三区在线播放| 国产网红主播福利一区二区| 亚洲欧美一区二区三区国产精品| 亚洲一区二区三区爽爽爽爽爽| 青青草国产精品97视觉盛宴| 国产成人综合亚洲网站| 91久久人澡人人添人人爽欧美| 欧美精品在线观看一区二区| 欧美精品一区二区蜜臀亚洲| 亚洲欧洲色图综合| 日本特黄久久久高潮| 成人av网站在线观看免费| 欧美三级电影网站| 国产亚洲精品7777| 五月天亚洲精品| 国产91在线看| 91精品国产欧美一区二区成人| 欧美激情在线一区二区| 日日夜夜免费精品| 成人国产在线观看| 日韩欧美一区二区三区在线| 亚洲欧美在线aaa| 韩国午夜理伦三级不卡影院| 91在线观看地址| 久久久久久夜精品精品免费| 亚洲二区在线观看| av综合在线播放| 日韩精品一区二区三区视频在线观看 | 风间由美一区二区av101| 欧美欧美欧美欧美| 亚洲欧洲精品天堂一级| 久久97超碰国产精品超碰| 色悠悠久久综合| 国产欧美一区二区精品性色| 免费成人在线影院| 欧美三区在线视频| 国产精品自在欧美一区| 欧美视频一二三区| 亚洲欧美偷拍卡通变态| 韩国精品久久久| 日韩限制级电影在线观看| 一区二区视频在线看| 夫妻av一区二区| 久久网站热最新地址| 毛片不卡一区二区| 欧美一级理论性理论a| 亚洲大片精品永久免费| 色综合色综合色综合| 最新高清无码专区| 成人免费视频一区| 国产精品免费视频网站| 粉嫩绯色av一区二区在线观看| 精品sm在线观看| 精品午夜久久福利影院| 日韩精品一区二区三区蜜臀| 日本欧美韩国一区三区| 欧美一区国产二区| 日韩和欧美一区二区三区| 欧美男生操女生| 午夜精品在线视频一区| 欧美日韩美少妇| 午夜电影一区二区三区| 3751色影院一区二区三区| 日本免费新一区视频| 91精品午夜视频| 日韩福利视频网| 日韩欧美视频一区| 韩国精品一区二区| 国产农村妇女毛片精品久久麻豆| 国产精品影视在线观看| 国产精品伦理一区二区| 9人人澡人人爽人人精品| 中文字幕日韩精品一区| 在线观看国产精品网站| 亚洲第四色夜色| 日韩欧美亚洲国产精品字幕久久久| 久久精品国产99国产精品| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 在线日韩一区二区| 亚洲麻豆国产自偷在线| 日本国产一区二区| 日韩国产成人精品| 精品国产成人在线影院| 成人免费毛片app| 亚洲黄一区二区三区| 5858s免费视频成人| 国产在线精品一区二区夜色 | 777亚洲妇女| 国产精品中文有码| 一区二区三区四区不卡视频| 欧美日韩精品电影| 国产一区激情在线|