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

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

?? count_top.vhd

?? VGA計數
?? VHD
字號:
--頂層文件源代碼如下所示:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

entity count_top is
    Port ( rst : in std_logic;
           clkin : in std_logic;
           ld : in std_logic;
           up : in std_logic;
           hs : out std_logic;
           vs : out std_logic;
           r : out std_logic_vector(2 downto 0);
           g : out std_logic_vector(2 downto 0);
           b : out std_logic_vector(1 downto 0));
end count_top;

architecture Behavioral of count_top is

	component counter
		port(	CLK: in STD_LOGIC;
	     		RESET: in STD_LOGIC;
	     		CE, LOAD, DIR: in STD_LOGIC;
	     		DIN: in STD_LOGIC_VECTOR(15 downto 0);
	     		COUNT: inout STD_LOGIC_VECTOR(15 downto 0));
	end component;

	component HEX2LED_4 
	    Port ( HEX : in std_logic_vector(15 downto 0);
	           LED1 : out std_logic_vector(6 downto 0);
	           LED2 : out std_logic_vector(6 downto 0);
	           LED3 : out std_logic_vector(6 downto 0);
	           LED4 : out std_logic_vector(6 downto 0));
	end component;

	component vga_16 
	    Port ( clk : in std_logic;
	           hs : out std_logic;
	           vs : out std_logic;
	           r : out std_logic;
	           g : out std_logic;
	           b : out std_logic;
		       innum  : in std_logic_vector(15 downto 0);
		       innum0 : in std_logic_vector(15 downto 0); 
	           innum1 : in std_logic_vector(6 downto 0);
	           innum2 : in std_logic_vector(6 downto 0);
	           innum3 : in std_logic_vector(6 downto 0);
		       innum4 : in std_logic_vector(6 downto 0));
	end component;

	signal clk: std_logic;
	signal N: std_logic_vector(23 downto 0);
	signal do: std_logic_vector(15 downto 0);
	signal din: std_logic_vector(15 downto 0);
	signal ce: std_logic;
	signal vga_r,vga_g,vga_b: std_logic;
	signal HEX :  std_logic_vector(15 downto 0);
	signal LED1 : std_logic_vector(6 downto 0);
	signal LED2 : std_logic_vector(6 downto 0);
	signal LED3 : std_logic_vector(6 downto 0);
	signal LED4 : std_logic_vector(6 downto 0);

	begin

		process(clkin, N)
		begin
			if (clkin'event and clkin='1') then
				N<=N+1;
			end if;
		end process;

		clk<=N(23);
		din<="0001001000110100";
		ce<='1';
		
		U1: counter port map(clk,rst,ce,ld,up,din,do);
		U2: HEX2LED_4 port map(do, led1,led2,led3,led4);
		U3:vga_16  port map(clkin,hs,vs,vga_r,vga_g,vga_b,do,do,led1,led2,led3,led4);

	r(0) <= vga_r;
	r(1) <= vga_r;
	r(2) <= vga_r;
	
	g(0) <= vga_g;
	g(1) <= vga_g;
	g(2) <= vga_g;
	
	b(0) <= vga_b;
	b(1) <= vga_b;
	
end Behavioral;

--計數器源程序如下所示:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

entity counter is
	port(CLK: in STD_LOGIC;
	     RESET: in STD_LOGIC;
	     CE, LOAD, DIR: in STD_LOGIC;
	     DIN: in STD_LOGIC_VECTOR(15 downto 0);
	     COUNT: inout STD_LOGIC_VECTOR(15 downto 0));
end counter;

architecture Behavioral of counter is
begin

	process (CLK, RESET) 
	begin
	   if RESET='0' then 
	      COUNT <= (others=>'0');
	   elsif CLK='1' and CLK'event then
	      if CE='1' then
	         if LOAD='0' then
	      	   COUNT <= DIN;
	         else 
	            if DIR='1' then  
	               COUNT <= COUNT + 1;
	            else
	               COUNT <= COUNT - 1;
	            end if;
	         end if;
	      end if;
	   end if;
	end process;
	 
end Behavioral;

--數碼管譯碼源程序:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

entity HEX2LED_4 is
    Port ( HEX : in std_logic_vector(15 downto 0);
           LED1 : out std_logic_vector(6 downto 0);
           LED2 : out std_logic_vector(6 downto 0);
           LED3 : out std_logic_vector(6 downto 0);
           LED4 : out std_logic_vector(6 downto 0));
end HEX2LED_4;

architecture Behavioral of HEX2LED_4 is
begin
  
--HEX-to-seven-segment decoder
--   HEX:   in    STD_LOGIC_VECTOR (3 downto 0);
--   LED:   out   STD_LOGIC_VECTOR (6 downto 0);
-- 
-- segment encoding
--      0
--     ---  
--  5 |   | 1
--     ---   <- 6
--  4 |   | 2
--     ---
--      3
   
    with HEX(3 downto 0) SELect
   	LED1<= "1111001" when "0001",   --1
    	   "0100100" when "0010",   --2
           "0110000" when "0011",   --3
           "0011001" when "0100",   --4
           "0010010" when "0101",   --5
           "0000010" when "0110",   --6
           "1111000" when "0111",   --7
           "0000000" when "1000",   --8
           "0010000" when "1001",   --9
           "0001000" when "1010",   --A
           "0000011" when "1011",   --b
           "1000110" when "1100",   --C
           "0100001" when "1101",   --d
           "0000110" when "1110",   --E
           "0001110" when "1111",   --F
           "1000000" when others;   --0
 
	 with HEX(7 downto 4) SELect
   	 LED2<= "1111001" when "0001",   --1
     	    "0100100" when "0010",   --2
            "0110000" when "0011",   --3
         	"0011001" when "0100",   --4
         	"0010010" when "0101",   --5
         	"0000010" when "0110",   --6
         	"1111000" when "0111",   --7
         	"0000000" when "1000",   --8
         	"0010000" when "1001",   --9
         	"0001000" when "1010",   --A
         	"0000011" when "1011",   --b
         	"1000110" when "1100",   --C
         	"0100001" when "1101",   --d
         	"0000110" when "1110",   --E
         	"0001110" when "1111",   --F
         	"1000000" when others;   --0

	with HEX(11 downto 8) SELect
   	LED3<= "1111001" when "0001",   --1
    	   "0100100" when "0010",   --2
           "0110000" when "0011",   --3
           "0011001" when "0100",   --4
           "0010010" when "0101",   --5
           "0000010" when "0110",   --6
           "1111000" when "0111",   --7
           "0000000" when "1000",   --8
           "0010000" when "1001",   --9
           "0001000" when "1010",   --A
           "0000011" when "1011",   --b
           "1000110" when "1100",   --C
           "0100001" when "1101",   --d
           "0000110" when "1110",   --E
           "0001110" when "1111",   --F
           "1000000" when others;   --0

	with HEX(15 downto 12) SELect
   	LED4<= "1111001" when "0001",   --1
           "0100100" when "0010",   --2
           "0110000" when "0011",   --3
           "0011001" when "0100",   --4
           "0010010" when "0101",   --5
           "0000010" when "0110",   --6
           "1111000" when "0111",   --7
           "0000000" when "1000",   --8
           "0010000" when "1001",   --9
           "0001000" when "1010",   --A
           "0000011" when "1011",   --b
           "1000110" when "1100",   --C
           "0100001" when "1101",   --d
           "0000110" when "1110",   --E
           "0001110" when "1111",   --F
           "1000000" when others;   --0
end Behavioral;

--VGA顯示源程序:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;

entity vga_16 is
    Port ( clk : in std_logic;
           hs : out std_logic;
           vs : out std_logic;
           r : out std_logic;
           g : out std_logic;
           b : out std_logic;
		   innum  : in std_logic_vector(15 downto 0);
		   innum0 : in std_logic_vector(15 downto 0); 
           innum1 : in std_logic_vector(6 downto 0);
           innum2 : in std_logic_vector(6 downto 0);
           innum3 : in std_logic_vector(6 downto 0);
		   innum4 : in std_logic_vector(6 downto 0));
end vga_16;

architecture Behavioral of vga_16 is

constant  color1: std_logic_vector:="010";		--顯示顏色為紅色
constant  color2: std_logic_vector:="100";
constant  color3: std_logic_vector:="001";
constant  color4: std_logic_vector:="110";

signal 	hs1,vs1,fclk,cclk: std_logic;
signal 	fs: std_logic_vector(5 downto 0);
signal 	cc: std_logic_vector(4 downto 0);
signal 	ll: std_logic_vector(8 downto 0);
signal 	rgbp: std_logic_vector(3 downto 1);
signal	rgb: std_logic_vector(3 downto 1);

begin

	rgb(1)<=rgbp(1) and hs1 and vs1;
	rgb(2)<=rgbp(2) and hs1 and vs1;
	rgb(3)<=rgbp(3) and hs1 and vs1;
	
	fclk<=fs(5);
	cclk<=cc(4);
	
	hs<=hs1;
	vs<=vs1;
	
	r<=rgb(2);
	g<=rgb(3);
	b<=rgb(1);
	
	process(clk)
	begin
		if clk'event and clk='1' then
			if fs=50 then
				fs<="000000";
			else
				fs<=fs+1;
			end if;
		end if;
	end process;

	process(fclk)
	begin
		if fclk'event and fclk='1' then
			if cc=27 then
				cc<="00000";
			else
				cc<=cc+1;
			end if;
		end if;
	end process;

	process(cclk)
	begin
		if cclk'event and cclk='1' then
			if ll=481 then
				ll<="000000000";
			else
				ll<=ll+1;
			end if;
		end if;
	end process;

	process(cc, ll)
	begin
		if cc>23 then 			--行同步
			hs1<='0';
		else hs1<='1';
		end if;
		if ll>479 then			--場同步
			vs1<='0';
		else vs1<='1';
		end if;
	end process;

	process(cc,ll,innum,innum0,innum1,innum2,innum3,innum4)
	begin
		if cc>2 and cc<7 then
			if ll>60 and ll<101 and innum4(0)='0' then	--a0
				rgbp<=color1;
			elsif ll>180 and ll<221 and innum4(6)='0' then	--g0
				rgbp<=color1;
			elsif ll>300 and ll<341 and innum4(3)='0' then	--d0
				rgbp<=color1;
			elsif ll>60 and ll<202 then
				if (cc>2 and cc<4) and innum4(5)='0' then	--f0
					rgbp<=color1;
				elsif (cc>5 and cc<7) and innum4(1)='0' then	--b0
					rgbp<=color1;
				else rgbp<="000";
				end if;
			elsif ll>201 and ll<341 then
				if (cc>2 and cc<4) and innum4(4)='0' then	--e0
					rgbp<=color1;
				elsif (cc>5 and cc<7) and innum4(2)='0' then	--c0
					rgbp<=color1;
				else rgbp<="000";
				end if;
			elsif ll>350 and ll<370 then
				if cc>2 and cc<4 and innum(15)='1' then	--p8
					rgbp<=color1;
				elsif cc>3 and cc<5 and innum(14)='1' then	--p4
					rgbp<=color1;
				elsif cc>4 and cc<6 and innum(13)='1' then	--p2
					rgbp<=color1;
				elsif cc>5 and cc<7 and innum(12)='1' then	--p1
					rgbp<=color1;
				else rgbp<="000";
				end if;
			elsif ll>380 and ll<400 then	
				if cc>2 and cc<4 and innum0(15)='1' then	--q8
					rgbp<=color1;
				elsif cc>3 and cc<5 and innum0(14)='1' then	--q4
					rgbp<=color1;
				elsif cc>4 and cc<6 and innum0(13)='1' then	--q2
					rgbp<=color1;
				elsif cc>5 and cc<7 and innum0(12)='1' then	--q1
					rgbp<=color1;
				else rgbp<="000";
				end if;
			else
				rgbp<="000";
			end if;
		elsif cc>7 and cc<12 then
			if ll>60 and ll<101 and innum3(0)='0' then
				rgbp<=color2;
			elsif ll>180 and ll<221 and innum3(6)='0' then
				rgbp<=color2;
			elsif ll>300 and ll<341 and innum3(3)='0' then
				rgbp<=color2;
			elsif ll>60 and ll<202 then
				if (cc>7 and cc<9) and innum3(5)='0' then
					rgbp<=color2;
				elsif (cc>10 and cc<12) and innum3(1)='0' then
					rgbp<=color2;
				else rgbp<="000";
				end if;
			elsif ll>201 and ll<341 then
				if (cc>7 and cc<9) and innum3(4)='0' then
					rgbp<=color2;
				elsif (cc>10 and cc<12) and innum3(2)='0' then
					rgbp<=color2;
				else rgbp<="000";
				end if;
			elsif ll>350 and ll<370 then
				if cc>7 and cc<9 and innum(11)='1' then
					rgbp<=color2;
				elsif cc>8 and cc<10 and innum(10)='1' then
					rgbp<=color2;
				elsif cc>9 and cc<11 and innum(9)='1' then
					rgbp<=color2;
				elsif cc>10 and cc<12 and innum(8)='1' then
					rgbp<=color2;
				else rgbp<="000";
				end if;
			elsif ll>380 and ll<400 then
				if cc>7 and cc<9 and innum0(11)='1' then
					rgbp<=color2;
				elsif cc>8 and cc<10 and innum0(10)='1' then
					rgbp<=color2;
				elsif cc>9 and cc<11 and innum0(9)='1' then
					rgbp<=color2;
				elsif cc>10 and cc<12 and innum0(8)='1' then
					rgbp<=color2;
				else rgbp<="000";
				end if;
			else
				rgbp<="000";
			end if;
		elsif cc>12 and cc<17 then
			if ll>60 and ll<101 and innum2(0)='0' then
				rgbp<=color3;
			elsif ll>180 and ll<221 and innum2(6)='0' then
				rgbp<=color3;
			elsif ll>300 and ll<341 and innum2(3)='0' then
				rgbp<=color3;
			elsif ll>60 and ll<202 then
				if (cc>12 and cc<14) and innum2(5)='0' then
					rgbp<=color3;
				elsif (cc>15 and cc<17) and innum2(1)='0' then
					rgbp<=color3;
				else rgbp<="000";
				end if;
			elsif ll>201 and ll<341 then
				if (cc>12 and cc<14) and innum2(4)='0' then
					rgbp<=color3;
				elsif (cc>15 and cc<17) and innum2(2)='0' then
					rgbp<=color3;
				else rgbp<="000";
				end if;
			elsif ll>350 and ll<370 then
				if cc>12 and cc<14 and innum(7)='1' then
					rgbp<=color3;
				elsif cc>13 and cc<15 and innum(6)='1' then
					rgbp<=color3;
				elsif cc>14 and cc<16 and innum(5)='1' then
					rgbp<=color3;
				elsif cc>15 and cc<17 and innum(4)='1' then
					rgbp<=color3;
				else rgbp<="000";
				end if;
			elsif ll>380 and ll<400 then
				if cc>12 and cc<14 and innum0(7)='1' then
					rgbp<=color3;
				elsif cc>13 and cc<15 and innum0(6)='1' then
					rgbp<=color3;
				elsif cc>14 and cc<16 and innum0(5)='1' then
					rgbp<=color3;
				elsif cc>15 and cc<17 and innum0(4)='1' then
					rgbp<=color3;
				else rgbp<="000";
				end if;
			else
				rgbp<="000";
			end if;
		elsif cc>17 and cc<22 then
			if ll>60 and ll<101 and innum1(0)='0' then
				rgbp<=color4;
			elsif ll>180 and ll<221 and innum1(6)='0' then
				rgbp<=color4;
			elsif ll>300 and ll<341 and innum1(3)='0' then
				rgbp<=color4;
			elsif ll>60 and ll<202 then
				if (cc>17 and cc<19) and innum1(5)='0' then
					rgbp<=color4;
				elsif (cc>20 and cc<22) and innum1(1)='0' then
					rgbp<=color4;
				else rgbp<="000";
				end if;
			elsif ll>201 and ll<341 then
				if (cc>17 and cc<19) and innum1(4)='0' then
					rgbp<=color4;
				elsif (cc>20 and cc<22) and innum1(2)='0' then
					rgbp<=color4;
				else rgbp<="000";
				end if;
			elsif ll>350 and ll<370 then
				if cc>17 and cc<19 and innum(3)='1' then
					rgbp<=color4;
				elsif cc>18 and cc<20 and innum(2)='1' then
					rgbp<=color4;
				elsif cc>19 and cc<21 and innum(1)='1' then
					rgbp<=color4;
				elsif cc>20 and cc<22 and innum(0)='1' then
					rgbp<=color4;
				else rgbp<="000";
				end if;
			elsif ll>380 and ll<400 then
				if cc>17 and cc<19 and innum0(3)='1' then
					rgbp<=color4;
				elsif cc>18 and cc<20 and innum0(2)='1' then
					rgbp<=color4;
				elsif cc>19 and cc<21 and innum0(1)='1' then
					rgbp<=color4;
				elsif cc>20 and cc<22 and innum0(0)='1' then
					rgbp<=color4;
				else rgbp<="000";
				end if;
			else rgbp<="000";
			end if;	
		else rgbp<="000";
		end if;
	end process;

end Behavioral;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲欧美激情| 色吧成人激情小说| 久久综合九色综合欧美就去吻| 国内成人自拍视频| 亚洲欧美日韩国产综合| 欧美一区二区三区白人| 成人午夜私人影院| 日韩一区欧美二区| 国产精品夫妻自拍| wwwwxxxxx欧美| 国产欧美日韩在线| 欧美一区三区二区| 欧美一区二区在线看| 欧美电影免费观看高清完整版在 | 欧美一区二区三区成人| 欧美一级一级性生活免费录像| 91精品国产色综合久久ai换脸 | 日本欧美韩国一区三区| 中文字幕二三区不卡| 91精品国产综合久久精品app| 韩国v欧美v日本v亚洲v| 国产精品18久久久久久vr| 亚洲视频每日更新| 国产欧美日韩久久| 亚洲老司机在线| 亚洲视频免费在线观看| 天天亚洲美女在线视频| 亚洲风情在线资源站| 亚洲欧美另类综合偷拍| 午夜精品久久久久| 国产v日产∨综合v精品视频| 久久福利视频一区二区| 青娱乐精品视频在线| 五月天网站亚洲| 国产乱码精品1区2区3区| 色乱码一区二区三区88| 欧美变态口味重另类| 日韩美女在线视频 | 亚洲伦理在线免费看| 久久精品国产77777蜜臀| 99亚偷拍自图区亚洲| www.爱久久.com| 91精品婷婷国产综合久久性色| 国产免费成人在线视频| 天堂精品中文字幕在线| 成人18视频日本| 色94色欧美sute亚洲线路一ni | 久久蜜臀中文字幕| 久久久久亚洲综合| 亚洲国产毛片aaaaa无费看| 国产一区不卡在线| 国产成人免费av在线| 在线播放国产精品二区一二区四区 | 99re成人精品视频| 91国模大尺度私拍在线视频| 26uuu久久综合| 三级欧美韩日大片在线看| 99久久免费视频.com| 久久精品视频在线看| 日韩中文字幕av电影| 日本精品一级二级| 国产精品色呦呦| 亚洲一区二区在线播放相泽 | 国产亚洲一区二区三区四区| 一区二区三区av电影| 日韩精品久久久久久| 色综合婷婷久久| 制服.丝袜.亚洲.中文.综合 | 日韩欧美亚洲一区二区| 亚洲电影欧美电影有声小说| 韩国三级中文字幕hd久久精品| 欧美日韩精品免费观看视频| 精品国产免费人成电影在线观看四季 | 在线一区二区三区| 樱花影视一区二区| 在线一区二区观看| 午夜精品一区二区三区免费视频 | 看片的网站亚洲| 欧美成人一区二区三区片免费 | 五月婷婷激情综合| 欧美日韩激情一区二区| 三级一区在线视频先锋 | 艳妇臀荡乳欲伦亚洲一区| 91香蕉视频黄| 2017欧美狠狠色| 国产麻豆精品theporn| 国产偷国产偷精品高清尤物 | 日韩欧美在线一区二区三区| 亚洲天堂成人网| 色婷婷亚洲精品| 久久精品人人爽人人爽| 福利91精品一区二区三区| 国产精品久久久久久久久免费桃花| 成人午夜私人影院| 亚洲已满18点击进入久久| 欧美日韩精品福利| 韩国精品在线观看| 一区二区三区日韩精品视频| 91精品国产黑色紧身裤美女| 国产一区二区电影| 一区二区三区高清不卡| 日韩久久精品一区| youjizz久久| 午夜伊人狠狠久久| 久久精品网站免费观看| 日本精品裸体写真集在线观看| 日欧美一区二区| 国产精品色眯眯| 欧美一区二区免费观在线| 成人妖精视频yjsp地址| 亚洲午夜羞羞片| 欧美国产一区二区| 欧美精品第1页| 国产91精品精华液一区二区三区 | 亚洲欧美综合网| 成av人片一区二区| 日本网站在线观看一区二区三区| 国产亚洲精品福利| 91精品欧美综合在线观看最新| 国产成人aaa| 麻豆视频一区二区| 日韩你懂的在线播放| 99精品热视频| 国产经典欧美精品| 久久av老司机精品网站导航| 亚洲午夜精品17c| 中文一区二区完整视频在线观看| 91精品国产乱码| 欧美日韩精品一区视频| 99久久精品国产导航| 国产老妇另类xxxxx| 日本va欧美va瓶| 亚洲国产精品欧美一二99| 亚洲欧洲综合另类| 久久久久久久久久看片| 欧美一区二区二区| 欧美美女一区二区在线观看| 日本丶国产丶欧美色综合| 成人一区二区三区视频在线观看 | 欧美男生操女生| 欧美亚洲综合一区| 久草精品在线观看| 亚洲欧洲日韩女同| 亚洲国产成人在线| 欧美国产精品v| 久久久青草青青国产亚洲免观| 欧美另类久久久品| 欧美猛男gaygay网站| 色欧美乱欧美15图片| 色久优优欧美色久优优| 色综合天天做天天爱| 在线免费精品视频| 国产最新精品精品你懂的| 裸体歌舞表演一区二区| 久久精品999| 精品一区二区久久| 国产一区二区三区久久久| 狠狠色狠狠色综合| 国产成人在线网站| 成人美女在线视频| 一本到不卡精品视频在线观看| jlzzjlzz亚洲日本少妇| 99re这里只有精品视频首页| 一本色道久久综合亚洲91| 91福利视频在线| 91精品国产91综合久久蜜臀| 日韩精品一区二区三区视频在线观看| 91精品国产综合久久精品图片| 精品嫩草影院久久| 国产精品天干天干在观线| ●精品国产综合乱码久久久久| 一区二区三区国产精品| 青青草伊人久久| 国产一区不卡在线| 色婷婷久久久亚洲一区二区三区| 欧美三级在线视频| 91在线码无精品| 911精品产国品一二三产区| 欧美xxxx老人做受| 亚洲欧洲www| 麻豆精品一区二区| 波多野结衣中文一区| 欧美剧情片在线观看| 久久一区二区三区四区| 亚洲欧美区自拍先锋| 久久国产麻豆精品| 99久久99久久精品免费看蜜桃| 欧美日韩国产电影| 国产精品妹子av| 蜜桃视频免费观看一区| 99国产精品视频免费观看| 欧美一区二区日韩一区二区| 国产精品久久久久久户外露出| 日本不卡视频一二三区| 99久久久久久99| 欧美videos大乳护士334| 一区二区三区四区激情| 国产91色综合久久免费分享| 欧美一区二区三区色| 亚洲少妇30p|