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

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

?? altera_mf_components.vhd

?? 一本老師推薦的經典的VHDL覆蓋基礎的入門書籍
?? VHD
?? 第 1 頁 / 共 5 頁
字號:
       );
    port
      ( wren        : in std_logic := '0';
        data        : in std_logic_vector(width-1 downto 0);
        wraddress   : in std_logic_vector(widthad-1 downto 0);
        inclock     : in std_logic := '0';
        inclocken   : in std_logic := '1';
        rden_a      : in std_logic := '1';
    rden_b      : in std_logic := '1';
        rdaddress_a : in std_logic_vector(widthad-1 downto 0);
    rdaddress_b : in std_logic_vector(widthad-1 downto 0);
        outclock    : in std_logic := '0';
        outclocken  : in std_logic := '1';
        aclr        : in std_logic := '0';
    qa          : out std_logic_vector(width-1 downto 0);
        qb          : out std_logic_vector(width-1 downto 0) );
end component;

component altqpram
    generic
      ( operation_mode            : string := "QUAD_PORT";
        width_write_a             : natural := 1;
        widthad_write_a           : natural := 1;
        numwords_write_a          : natural := 0;  -- default = 2^widthad_write_a
        indata_reg_a              : string := "INCLOCK_A";
        indata_aclr_a             : string := "INACLR_A";
        wrcontrol_wraddress_reg_a : string := "INCLOCK_A";
        wrcontrol_aclr_a          : string := "INACLR_A";
        wraddress_aclr_a          : string := "INACLR_A";

        width_write_b             : natural := 1;  -- default = width_write_a
        widthad_write_b           : natural := 1;  -- default = widthad_write_a
        numwords_write_b          : natural := 0;  -- default = 2^widthad_write_b
        indata_reg_b              : string := "INCLOCK_B";
        indata_aclr_b             : string := "INACLR_B";
        wrcontrol_wraddress_reg_b : string := "INCLOCK_B";
        wrcontrol_aclr_b          : string := "INACLR_B";
        wraddress_aclr_b          : string := "INACLR_B";

        width_read_a              : natural := 1;
        widthad_read_a            : natural := 1;
        numwords_read_a           : natural := 0;  -- default = 2^widthad_read_a
        rdcontrol_reg_a           : string := "OUTCLOCK_A";
        rdcontrol_aclr_a          : string := "OUTACLR_A";
        rdaddress_reg_a           : string := "OUTCLOCK_A";
        rdaddress_aclr_a          : string := "OUTACLR_A";
        outdata_reg_a             : string := "UNREGISTERED";
        outdata_aclr_a            : string := "OUTACLR_A";

        width_read_b              : natural := 1;  -- default = width_read_a
        widthad_read_b            : natural := 1;  -- default = widthad_read_a
        numwords_read_b           : natural := 0;  -- default = 2^widthad_read_b
        rdcontrol_reg_b           : string := "OUTCLOCK_B";
        rdcontrol_aclr_b          : string := "OUTACLR_B";
        rdaddress_reg_b           : string := "OUTCLOCK_B";
        rdaddress_aclr_b          : string := "OUTACLR_B";
        outdata_reg_b             : string := "UNREGISTERED";
        outdata_aclr_b            : string := "OUTACLR_B";

        init_file                 : string := "UNUSED";
        lpm_hint                  : string := "UNUSED";
    lpm_type                  : string := "altqpram" );

    port
      ( wren_a       : in std_logic := '0';
        wren_b       : in std_logic := '0';
        data_a       : in std_logic_vector(width_write_a-1 downto 0) := (OTHERS => '0');
        data_b       : in std_logic_vector(width_write_b-1 downto 0) := (OTHERS => '0');
        wraddress_a  : in std_logic_vector(widthad_write_a-1 downto 0) := (OTHERS => '0');
        wraddress_b  : in std_logic_vector(widthad_write_b-1 downto 0) := (OTHERS => '0');
        inclock_a    : in std_logic := '0';
        inclock_b    : in std_logic := '0';
        inclocken_a  : in std_logic := '1';
        inclocken_b  : in std_logic := '1';
        rden_a       : in std_logic := '1';
        rden_b       : in std_logic := '1';
        rdaddress_a  : in std_logic_vector(widthad_read_a-1 downto 0) := (OTHERS => '0');
        rdaddress_b  : in std_logic_vector(widthad_read_b-1 downto 0) := (OTHERS => '0');
        outclock_a   : in std_logic := '0';
        outclock_b   : in std_logic := '0';
        outclocken_a : in std_logic := '1';
        outclocken_b : in std_logic := '1';
        inaclr_a     : in std_logic := '0';
        inaclr_b     : in std_logic := '0';
        outaclr_a    : in std_logic := '0';
        outaclr_b    : in std_logic := '0';
        q_a          : out std_logic_vector(width_read_a-1 downto 0);
        q_b          : out std_logic_vector(width_read_b-1 downto 0) );
end component;

component scfifo
    generic
      ( lpm_width               : natural;
        lpm_widthu              : natural;
        lpm_numwords            : natural;
        lpm_showahead           : string := "OFF";
        lpm_hint                : string := "USE_EAB=ON";
        intended_device_family  : string := "NON_STRATIX";
        almost_full_value       : natural := 0;
        almost_empty_value      : natural := 0;
        overflow_checking       : string := "ON";
        underflow_checking      : string := "ON";
        allow_rwcycle_when_full : string := "OFF";
        use_eab                 : string := "ON";
        lpm_type                : string := "scfifo"
    );
    port
      ( data         : in std_logic_vector(lpm_width-1 downto 0);
        clock        : in std_logic;
        wrreq        : in std_logic;
        rdreq        : in std_logic;
        aclr         : in std_logic := '0';
        sclr         : in std_logic := '0';
        full         : out std_logic;
        almost_full  : out std_logic;
        empty        : out std_logic;
        almost_empty : out std_logic;
        q            : out std_logic_vector(lpm_width-1 downto 0);
        usedw        : out std_logic_vector(lpm_widthu-1 downto 0)
     );
end component;

component dcfifo
    generic
      ( lpm_width               : natural;
        lpm_widthu              : natural;
        lpm_numwords            : natural;
        lpm_showahead           : string := "OFF";
        lpm_hint                : string := "USE_EAB=ON";
        overflow_checking       : string := "ON";
        underflow_checking      : string := "ON";
        delay_rdusedw           : natural := 1;
        delay_wrusedw           : natural := 1;
        rdsync_delaypipe        : natural := 3;
        wrsync_delaypipe        : natural := 3;
        use_eab                 : string := "ON";
        add_ram_output_register : string := "OFF";
    add_width       : natural := 1;
        clocks_are_synchronized : string := "FALSE";
    lpm_type                : string := "dcfifo";
    intended_device_family  : string := "NON_STRATIX" );
    port
      ( data    : in std_logic_vector(lpm_width-1 downto 0);
        rdclk   : in std_logic;
        wrclk   : in std_logic;
        wrreq   : in std_logic;
        rdreq   : in std_logic;
        aclr    : in std_logic := '0';
        rdfull  : out std_logic;
        wrfull  : out std_logic;
        wrempty : out std_logic;
        rdempty : out std_logic;
        q       : out std_logic_vector(lpm_width-1 downto 0);
        rdusedw : out std_logic_vector(lpm_widthu-1 downto 0);
        wrusedw : out std_logic_vector(lpm_widthu-1 downto 0));
end component;

component alt_exc_dpram
    generic 
      ( width          : integer;
        addrwidth      : integer;
        depth          : integer;
        ramblock       : integer := 65535;
        operation_mode : string := "SINGLE_PORT";
        output_mode    : string := "REG";
        lpm_file       : string := "NONE";
        lpm_type       : string := "alt_exc_dpram" 
       );


    port
      ( portaclk     : in std_logic := '0';
        portaena     : in std_logic := '0';
        portawe      : in std_logic := '0';
        portaaddr    : in std_logic_vector(addrwidth-1 downto 0) := (others =>'0');
        portadatain  : in std_logic_vector(width-1 downto 0) := (others =>'0');
        portadataout : out std_logic_vector(width-1 downto 0);
        portbclk     : in std_logic := '0';
        portbena     : in std_logic := '0';
        portbwe      : in std_logic := '0';
        portbaddr    : in std_logic_vector(addrwidth-1 downto 0) := (others =>'0');
        portbdatain  : in std_logic_vector(width-1 downto 0) := (others =>'0');
        portbdataout : out std_logic_vector(width-1 downto 0));
end component;

component alt_exc_upcore
    generic
      ( processor      : string := "ARM";
        source         : string := "";
        sdram_width    : integer := 32;
        sdramdqm_width : integer := 4;
        gpio_width     : integer := 4;
        lpm_type       : string := "alt_exc_upcore" 
      );


    port
      ( npor           : in    std_logic                     := '1';
        clk_ref        : in    std_logic                     := '0';
        nreset         : inout std_logic                     := '1';

        intpld         : in  std_logic_vector(5 downto 0)  := (others => '0');
        intnmi         : in  std_logic                     := '0';
        intuart        : out std_logic;
        inttimer0      : out std_logic;
        inttimer1      : out std_logic;
        intcommtx      : out std_logic;
        intcommrx      : out std_logic;
        intproctimer   : out std_logic;
        intprocbridge  : out std_logic;
        perreset       : out std_logic;

        debugrq      : in  std_logic := '0';
        debugext0    : in  std_logic := '0';
        debugext1    : in  std_logic := '0';
        debugiebrkpt : in  std_logic := '0';
        debugdewpt   : in  std_logic := '0';
        debugextin   : in  std_logic_vector(3 downto 0) := (others => '0');
        debugack     : out std_logic;
        debugrng0    : out std_logic;
        debugrng1    : out std_logic;
        debugextout  : out std_logic_vector(3 downto 0);

        slavehclk      : in  std_logic := '0';
        slavehwrite    : in  std_logic := '0';
        slavehreadyi   : in  std_logic := '0';
        slavehselreg   : in  std_logic := '0';
        slavehsel      : in  std_logic := '0';
        slavehmastlock : in  std_logic := '0';
        slavehaddr     : in  std_logic_vector(31 downto 0) := (others => '0');
        slavehwdata    : in  std_logic_vector(31 downto 0) := (others => '0');
        slavehtrans    : in  std_logic_vector(1 downto 0) := (others => '0');
        slavehsize     : in  std_logic_vector(1 downto 0) := (others => '0');
        slavehburst    : in  std_logic_vector(2 downto 0) := (others => '0');
        slavehreadyo   : out std_logic;
        slavebuserrint : out std_logic;
        slavehrdata    : out std_logic_vector(31 downto 0);
        slavehresp     : out std_logic_vector(1 downto 0);

        masterhclk     : in  std_logic := '0';
        masterhrdata   : in  std_logic_vector(31 downto 0) := (others => '0');
        masterhresp    : in  std_logic_vector(1 downto 0) := (others => '0');
        masterhwrite   : out std_logic;
        masterhlock    : out std_logic;
        masterhbusreq  : out std_logic;
        masterhaddr    : out std_logic_vector(31 downto 0);
        masterhwdata   : out std_logic_vector(31 downto 0);
        masterhtrans   : out std_logic_vector(1 downto 0);
        masterhsize    : out std_logic_vector(1 downto 0);
        masterhready   : in  std_logic := '0';
        masterhburst   : out std_logic_vector(2 downto 0);
        masterhgrant   : in  std_logic := '0';

        lockreqdp0   : in  std_logic := '0';
        lockreqdp1   : in  std_logic := '0';
        lockgrantdp0 : out std_logic;
        lockgrantdp1 : out std_logic;

        ebiack  : in  std_logic := '0';
        ebiwen  : out std_logic;
        ebioen  : out std_logic;
        ebiclk  : out std_logic;
        ebibe   : out std_logic_vector(1 downto 0);
        ebicsn  : out std_logic_vector(3 downto 0);
        ebiaddr : out std_logic_vector(24 downto 0);

        ebidq : inout std_logic_vector(15 downto 0) := (others => '0');

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91黄色免费看| 精品无码三级在线观看视频| 欧美第一区第二区| 色屁屁一区二区| 成人高清在线视频| 国产视频视频一区| 欧美mv和日韩mv的网站| 精品视频在线看| 色哟哟在线观看一区二区三区| 国产成人一区在线| 国产一区中文字幕| 久久99精品国产| 蜜臀av一区二区在线免费观看| 日韩精品免费专区| 日韩专区中文字幕一区二区| 亚洲午夜电影在线| 亚洲国产欧美在线| 亚洲高清免费在线| 日韩av成人高清| 老司机午夜精品99久久| 青青草97国产精品免费观看无弹窗版 | 日韩和欧美一区二区三区| 亚洲欧美日韩人成在线播放| 亚洲欧美日韩成人高清在线一区| 国产日产欧美一区二区视频| 久久九九久久九九| 国产欧美精品区一区二区三区| 亚洲精品一区二区三区精华液 | 欧美xxxxxxxxx| 欧美一级搡bbbb搡bbbb| 日韩午夜精品视频| 久久综合狠狠综合久久综合88| 精品国产髙清在线看国产毛片| 精品国产乱码久久久久久影片| 精品国产91久久久久久久妲己| 精品国产凹凸成av人导航| 久久久久成人黄色影片| 成人欧美一区二区三区白人| 亚洲精品一二三四区| 午夜成人免费视频| 激情综合亚洲精品| 91丨九色丨尤物| 欧美日韩国产另类不卡| 日韩无一区二区| 国产女同性恋一区二区| 一区二区三区中文免费| 日韩国产欧美一区二区三区| 国产专区综合网| 91亚洲男人天堂| 91精品欧美一区二区三区综合在| 2021国产精品久久精品| 中文字幕日韩一区二区| 天天色综合成人网| 国产v日产∨综合v精品视频| 91视频.com| 精品国精品自拍自在线| 18涩涩午夜精品.www| 日韩高清在线电影| 91免费观看视频在线| 精品三级av在线| 亚洲一区精品在线| 成人av午夜影院| 精品入口麻豆88视频| 一区二区三区毛片| 国产成人精品亚洲日本在线桃色| 884aa四虎影成人精品一区| 亚洲人123区| 成人亚洲一区二区一| 日韩一区二区高清| 午夜成人免费电影| 日本久久电影网| 国产亚洲制服色| 青青草伊人久久| 欧美日韩一区二区在线观看视频| 国产精品区一区二区三| 美国三级日本三级久久99| 在线观看成人小视频| 国产三级精品在线| 精品中文字幕一区二区| 欧美日韩国产综合久久| 亚洲精品欧美激情| 国产一区二区三区免费播放| 欧美精品aⅴ在线视频| 综合欧美亚洲日本| 成人福利视频网站| www日韩大片| 激情欧美一区二区| 日韩欧美的一区| 日本va欧美va欧美va精品| 欧美日韩激情在线| 午夜精品久久久久久久久久久| 99久久综合精品| 国产精品久久久久久久久快鸭| 国产综合久久久久久鬼色| 日韩精品一区二区三区在线观看| 一区二区在线看| 色94色欧美sute亚洲线路一久 | 国产成人免费网站| 精品国产精品一区二区夜夜嗨 | 国产亚洲婷婷免费| 国产一区二区三区av电影 | 99久久免费精品高清特色大片| 久久久不卡网国产精品一区| 蜜臀a∨国产成人精品| 欧美精品日韩精品| 亚洲午夜久久久久中文字幕久| 91精品1区2区| 亚洲一二三四区| 91成人免费在线| 亚洲人成7777| 777a∨成人精品桃花网| 裸体健美xxxx欧美裸体表演| 精品日韩欧美在线| 麻豆久久久久久久| 久久久久久久久久久久电影| 国产伦精品一区二区三区免费| 精品福利一区二区三区 | 成人免费视频视频在线观看免费| 久久一日本道色综合| 国内欧美视频一区二区| 久久久久亚洲蜜桃| 不卡一区二区三区四区| 亚洲一区在线看| 日韩午夜av一区| 成人激情开心网| 一区2区3区在线看| 精品国产乱子伦一区| 91一区一区三区| 美女精品自拍一二三四| 国产精品盗摄一区二区三区| 欧美色综合久久| 激情综合色播五月| 亚洲人成网站精品片在线观看| 制服丝袜在线91| 成人福利视频网站| 亚洲高清视频中文字幕| 久久久久久久国产精品影院| 一本高清dvd不卡在线观看| 日韩福利电影在线观看| 国产无人区一区二区三区| 欧美视频一二三区| 国产精品自拍一区| 亚洲国产综合在线| 日韩欧美综合一区| 国产成人小视频| 亚洲国产精品久久久久婷婷884 | 欧美午夜精品电影| 美女国产一区二区三区| 久久亚洲影视婷婷| 99精品视频在线免费观看| 最新国产成人在线观看| 欧美精品高清视频| 91亚洲男人天堂| 国产乱码精品一区二区三| 亚洲动漫第一页| 国产精品毛片久久久久久久| 欧美精选一区二区| av激情成人网| 五月天婷婷综合| 久久久久国产精品厨房| 欧美日韩国产a| 国产激情视频一区二区三区欧美| 国产精品久久久久影视| 日本久久电影网| 国产一区二区三区四区在线观看| 亚洲一区二区三区爽爽爽爽爽| 久久精品一区蜜桃臀影院| 91麻豆精品国产91久久久使用方法| 欧美日韩一区二区三区视频| 97久久人人超碰| a亚洲天堂av| 丁香婷婷综合激情五月色| 精品亚洲欧美一区| 日韩二区三区四区| 亚洲国产另类av| 亚洲欧美日韩国产手机在线| 国产精品视频一二三区| 久久久久久久久久久久久女国产乱| 日韩欧美国产一二三区| 日韩三级伦理片妻子的秘密按摩| 欧美视频在线不卡| 色狠狠色狠狠综合| 欧美无乱码久久久免费午夜一区| 91视频免费看| 91在线观看一区二区| 91麻豆免费在线观看| 色欧美乱欧美15图片| 欧美少妇一区二区| 91精品国产综合久久婷婷香蕉| 7878成人国产在线观看| 精品久久久久久久久久久久久久久| 欧美xxx久久| 欧美激情一区二区在线| 亚洲视频免费看| 一区二区三区国产精华| 香蕉成人伊视频在线观看| 秋霞国产午夜精品免费视频| 国产一二三精品| 91在线免费看| 欧美精品少妇一区二区三区|