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

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

?? mc8051_siu_rtl.vhd

?? 單片機8051 IP內核的VHDL源碼
?? VHD
?? 第 1 頁 / 共 4 頁
字號:
                if s_rxd_val = '0' then                  if s_m13_rxshift_en = '1' then                    s_recv_sh(7) <= s_rxd_val;		    s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";                  end if;                else                    -- reject false start bits                  if s_m13_rxshift_en = '1' then                v_rxstep := "10";                                      end if;                end if;                                end if;            when ("0010") =>            -- D1              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0011") =>            -- D2              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0100") =>            -- D3              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0101") =>            -- D4              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0110") =>            -- D5              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0111") =>            -- D6              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1000") =>            -- D7              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1001") =>            -- D8              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1010") =>            -- D9 = STOP BIT              -- store data and set interrupt bit if conditions are met.              if (s_ri = '0' and s_sm2 = '0') or                 (s_ri = '0' and s_rxd_val = '1') then                if s_m13_rxshift_en = '1' then                  s_recv_sh(7) <= s_rxd_val;		  s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                  v_rxstep := "10";                  s_recv_done <= '1';                  s_rb8 <= s_rxd_val;                  s_recv_buf <= s_recv_sh(7 downto 0);                end if;              -- forget data and recommence listening for a start bit              else                if s_m13_rxshift_en = '1' then                v_rxstep := "10";                                  end if;                              end if;            when others =>                v_rxstep := "10";            end case;--------------------------------------------------------------------------------- MODE 2-------------------------------------------------------------------------------          when ("10") =>            case s_recv_state is            when ("0000") =>            -- synchronise reception              if s_ren = '1' and s_detect = '1' then                v_rxstep := "01";                s_recv_sh <= conv_unsigned(0,8);                s_recv_done <= '0';              end if;            when ("0001") =>            -- D0 = START BIT              if s_rxd_val = '0' then                if s_m2_rxshift_en = '1' then                  s_recv_sh(7) <= s_rxd_val;		  s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";                end if;              else                    -- reject false start bits                if s_m2_rxshift_en = '1' then                v_rxstep := "10";                                    end if;              end if;            when ("0010") =>            -- D1              if s_m2_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0011") =>            -- D2              if s_m2_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0100") =>            -- D3              if s_m2_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0101") =>            -- D4              if s_m2_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0110") =>            -- D5              if s_m2_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0111") =>            -- D6              if s_m2_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1000") =>            -- D7              if s_m2_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1001") =>            -- D8              if s_m2_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1010") =>            -- D9              -- store data and set interrupt bit if conditions are met.              if (s_ri = '0' and s_sm2 = '0') or                 (s_ri = '0' and s_rxd_val = '1') then                if s_m2_rxshift_en = '1' then                  s_recv_sh(7) <= s_rxd_val;		  s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                  s_recv_done <= '1';                  s_rb8 <= s_rxd_val;                  s_recv_buf <= s_recv_sh(7 downto 0);                end if;              end if;              -- forget data               if s_m2_rxshift_en = '1' then                v_rxstep := "01";              end if;                            when ("1011") =>            -- D10 STOP BIT              -- recommence listening for a start bit              if s_m2_rxshift_en = '1' then                -- s_recv_state <= conv_unsigned(0,4);                v_rxstep := "10";              end if;            when others =>              -- s_recv_state <= conv_unsigned(0,4);                v_rxstep := "10";            end case;--------------------------------------------------------------------------------- MODE 3-------------------------------------------------------------------------------          when ("11") =>            case s_recv_state is            when ("0000") =>            -- synchronise reception              if s_ren = '1' and s_detect = '1' then                v_rxstep := "01";                s_recv_sh <= conv_unsigned(0,8);                s_recv_done <= '0';              end if;            when ("0001") =>            -- D0 = START BIT              if s_detect = '0' then                if s_rxd_val = '0' then                  if s_m13_rxshift_en = '1' then                    s_recv_sh(7) <= s_rxd_val;	            s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                  v_rxstep := "01";                  end if;                else                    -- reject false start bits                  if s_m13_rxshift_en = '1' then                  v_rxstep := "10";                                      end if;                end if;              end if;            when ("0010") =>            -- D1              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0011") =>            -- D2              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0100") =>            -- D3              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0101") =>            -- D4              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0110") =>            -- D5              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("0111") =>            -- D6              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1000") =>            -- D7              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1001") =>            -- D8              if s_m13_rxshift_en = '1' then                s_recv_sh(7) <= s_rxd_val;		s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                v_rxstep := "01";              end if;            when ("1010") =>            -- D9              -- store data and set interrupt bit if conditions are met.              if (s_ri = '0' and s_sm2 = '0') or                 (s_ri = '0' and s_rxd_val = '1') then                if s_m13_rxshift_en = '1' then                  s_recv_sh(7) <= s_rxd_val;		  s_recv_sh(6 downto 0) <= s_recv_sh(7 downto 1);                  s_recv_done <= '1';                  s_rb8 <= s_rxd_val;                  s_recv_buf <= s_recv_sh(7 downto 0);                end if;              end if;              -- forget data               if s_m13_rxshift_en = '1' then                v_rxstep := "01";              end if;                            when ("1011") =>            -- D10 STOP BIT              -- recommence listening for a start bit              if s_m13_rxshift_en = '1' then                v_rxstep := "10";              end if;            when others =>                v_rxstep := "10";            end case;          when others =>            null;          end case;	  case v_rxstep is	    when "01" =>	      s_recv_state <= s_recv_state + conv_unsigned(1,1);	    when "10" =>	      s_recv_state <= conv_unsigned(0,4);	    when others =>	      null;	  end case;	          end if;      end if;  end process p_receive;  end rtl;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品欧美综合在线| 日韩欧美色综合| 亚洲精品你懂的| 色拍拍在线精品视频8848| 亚洲精品精品亚洲| 欧美日韩一级二级| 另类欧美日韩国产在线| 国产亚洲美州欧州综合国| av激情成人网| 亚洲123区在线观看| 7777女厕盗摄久久久| 美国三级日本三级久久99| 久久久久久久免费视频了| 成人一区二区三区视频| 一区二区三区蜜桃| 日韩丝袜美女视频| 国产成a人亚洲精| 亚洲欧美日韩国产综合| 欧美日韩高清一区二区| 国产一区二区三区精品视频| 亚洲午夜久久久久久久久电影院 | 久久久久一区二区三区四区| 成人综合婷婷国产精品久久| 亚洲综合免费观看高清完整版在线| 欧美高清视频一二三区| 国产suv精品一区二区三区| 亚洲精品中文在线| 精品少妇一区二区三区在线播放| 国产.欧美.日韩| 日韩电影在线一区| 中文字幕在线一区| 日韩欧美在线1卡| aaa国产一区| 精品一区二区三区欧美| 亚洲欧美另类小说| 国产亚洲一本大道中文在线| 日本电影欧美片| 国产成人高清视频| 日韩激情av在线| 综合在线观看色| 久久午夜免费电影| 欧美日韩精品一区二区三区蜜桃| 国产精华液一区二区三区| 天天影视色香欲综合网老头| 国产精品少妇自拍| 日韩欧美一卡二卡| 欧美久久免费观看| 色悠悠亚洲一区二区| 国产福利91精品| 美女一区二区久久| 日韩影视精彩在线| 一区二区成人在线观看| 欧美国产日产图区| 久久久噜噜噜久久人人看 | 国模娜娜一区二区三区| 亚洲黄色免费网站| 成人欧美一区二区三区在线播放| 精品国免费一区二区三区| 91麻豆精品久久久久蜜臀 | 午夜亚洲国产au精品一区二区| 国产精品久久久久aaaa| 2024国产精品视频| 精品国产一区二区三区忘忧草| 欧美日韩不卡一区二区| 欧美亚洲一区二区在线观看| 99视频一区二区三区| 成人高清免费观看| 成人av电影在线播放| 成人午夜av电影| 国产成人在线视频免费播放| 国产在线精品一区二区| 精品一区中文字幕| 久久国产精品99精品国产| 免费亚洲电影在线| 韩国三级在线一区| 国内精品国产三级国产a久久| 久久国产精品色| 麻豆91精品91久久久的内涵| 久色婷婷小香蕉久久| 久久疯狂做爰流白浆xx| 国内精品不卡在线| 日本一道高清亚洲日美韩| 免费成人在线观看视频| 久久aⅴ国产欧美74aaa| 韩国av一区二区| 国内欧美视频一区二区 | 国产福利一区二区三区视频在线| 国产成人一区在线| 国产99久久久久| 国产一区二区三区免费观看| 国产福利一区二区| 99精品欧美一区二区三区小说| 成人av网站免费| 色婷婷激情综合| 91.com在线观看| 久久欧美中文字幕| 国产精品久久久久久久岛一牛影视 | 午夜欧美2019年伦理| 免费视频一区二区| 成人激情开心网| 欧美色精品在线视频| 精品剧情v国产在线观看在线| 久久精品亚洲精品国产欧美kt∨| 中文字幕一区av| 亚洲成a天堂v人片| 精品一区二区在线视频| www.综合网.com| 欧美精品黑人性xxxx| 久久久电影一区二区三区| 一区二区三区在线视频免费| 亚洲va国产va欧美va观看| 国产毛片一区二区| 欧美怡红院视频| 久久久久久久久一| 亚洲一区二区三区中文字幕在线| 久久精品国产99| 色婷婷久久久久swag精品| 欧美一区二区视频在线观看2020| 欧美经典一区二区| 午夜精品久久久久久久| 国产精品12区| 欧美日韩国产另类不卡| 国产精品热久久久久夜色精品三区 | 99久久精品免费看| 日韩一区二区中文字幕| 成人免费在线观看入口| 激情国产一区二区| 欧洲精品在线观看| 欧美韩国一区二区| 久久国产夜色精品鲁鲁99| 色吧成人激情小说| 国产精品午夜久久| 久久丁香综合五月国产三级网站| 一本高清dvd不卡在线观看| 2014亚洲片线观看视频免费| 亚洲综合无码一区二区| 成人一区二区三区中文字幕| 欧美岛国在线观看| 亚洲成人激情av| 色综合激情久久| 亚洲国产精品精华液ab| 狠狠色丁香婷婷综合久久片| 欧美日韩一区二区在线视频| 成人欧美一区二区三区小说 | 国产福利一区二区三区视频| 337p亚洲精品色噜噜狠狠| 亚洲天堂a在线| 国产资源在线一区| 欧美日韩国产系列| 亚洲综合自拍偷拍| 91蜜桃婷婷狠狠久久综合9色| 亚洲精品一区二区三区精华液 | 丝袜美腿亚洲综合| 日本久久一区二区| 亚洲欧美日韩人成在线播放| 国产成人亚洲综合a∨婷婷| 欧美一区二区三区成人| 香蕉影视欧美成人| 欧美图区在线视频| 午夜久久久久久久久| 欧美日韩不卡在线| 午夜精品久久久久久久蜜桃app| 欧美亚洲免费在线一区| 亚洲美女免费在线| 91久久久免费一区二区| 亚洲免费三区一区二区| 色狠狠一区二区| 亚洲图片欧美一区| 欧美日韩视频第一区| 亚洲成国产人片在线观看| 欧美日韩国产首页在线观看| 午夜精品爽啪视频| 日韩欧美区一区二| 精品一区二区三区免费毛片爱 | 综合中文字幕亚洲| 色婷婷一区二区| 亚洲一区日韩精品中文字幕| 欧美日韩一卡二卡三卡| 日韩av高清在线观看| 欧美mv和日韩mv国产网站| 国产精品一区二区免费不卡| 国产亚洲一区二区三区在线观看| 国产成人亚洲精品青草天美| 国产精品动漫网站| 欧美视频一二三区| 精品在线亚洲视频| 国产精品午夜久久| 91福利区一区二区三区| 日本亚洲电影天堂| 国产视频911| 欧洲在线/亚洲| 蜜臀99久久精品久久久久久软件| 久久久久国产精品麻豆| 99久久精品免费精品国产| 亚洲国产精品久久久久婷婷884 | 欧美一级xxx| 成人黄色电影在线 | 夜夜精品浪潮av一区二区三区| 欧美日韩国产区一| 国产福利电影一区二区三区|