0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫(xiě)文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

例說(shuō)Verilog HDL和VHDL區(qū)別

OpenFPGA ? 來(lái)源:Hack電子 ? 2023-12-20 09:03 ? 次閱讀

Verilog和VHDL之間的區(qū)別將在本文中通過(guò)示例進(jìn)行詳細(xì)說(shuō)明。對(duì)優(yōu)點(diǎn)和缺點(diǎn)的Verilog和VHDL進(jìn)行了討論。

d56300b8-9ecf-11ee-8b88-92fbcf53809c.png

HDL 建模能力:Verilog與VHDL

首先,讓我們討論一下 Verilog 和 VHDL 的硬件建模能力,因?yàn)樗鼈兌际怯糜诮S布挠布枋稣Z(yǔ)言。

下圖顯示了 Verilog 和 VHDL 在硬件抽象行為級(jí)別方面的 HDL 建模能力。

d5761a72-9ecf-11ee-8b88-92fbcf53809c.png

圖形來(lái)源:Douglas J. Smith,“VHDL 和 Verilog 比較和對(duì)比加上用 VHDL、Verilog 和 C 編寫(xiě)的建模示例”

低級(jí)建模

如上圖所示,Verilog 和 VHDL 都能夠?qū)τ布M(jìn)行建模。但是,在底層硬件建模方面,Verilog優(yōu)于VHDL。這是合理的,因?yàn)?Verilog 最初是為建模和模擬邏輯門(mén)而創(chuàng)建的。事實(shí)上,Verilog 具有內(nèi)置原語(yǔ)或低級(jí)邏輯門(mén),因此設(shè)計(jì)人員可以在 Verilog 代碼中實(shí)例化原語(yǔ),而 VHDL 則沒(méi)有。

Verilog 的門(mén)基元:and、nand、or、nor、xor、xnor、buf、not、bufif0、notif0、bufif1、notif1、pullup、pulldown。
Verilog 的開(kāi)關(guān)原語(yǔ):pmos、nmos、rpmos、rnmos、cmos、rcmos、tran、rtran、tranif0、rtranif0、tranif1、rtranif1。

更重要的是,Verilog 支持用戶定義基元 (UDP),因此設(shè)計(jì)人員可以定義自己的單元基元。此功能對(duì)于 ASIC 設(shè)計(jì)人員來(lái)說(shuō)尤其必要。

以下是有關(guān)如何在 Verilog 代碼中實(shí)例化門(mén)基元的 Verilog 示例:

or #5 u1(x,y,z);
and #10 u2(i1,i2,i3);
ADC_CIRCUIT u3(in1,out1,out2,clock); 
// ADC_CIRCUIT is an User-Defined Primitive for 
// Analog to Digital Converter for example.

Verilog 中一些低級(jí)內(nèi)置門(mén)基元的 VHDL 等效項(xiàng)可以通過(guò)使用邏輯運(yùn)算符如 NOT、AND、NAND、OR、NOR、XOR、XNOR 來(lái)實(shí)現(xiàn)。

下面是 Verilog 門(mén)基元的 VHDL 等效代碼示例:

or u1(x,y,z); in Verilog <=> x <=< span=""> y OR z; in VHDLand u2(i1,i2,i3); (Verilog) <=> i3 <=< span=""> i2 AND i3; in VHDL

為了支持 Verilog 中的 UDP 功能,VITAL(VHDL Initiative Towards ASIC Libraries-VHDL 面向 ASIC 庫(kù)的倡議)問(wèn)世,使 ASIC 設(shè)計(jì)人員能夠在符合 VITAL 的 VHDL 中創(chuàng)建自己的單元基元或 ASIC 庫(kù),如上圖所示。盡管如此,VHDL 仍然可能無(wú)法實(shí)現(xiàn) Verilog 對(duì)低級(jí)硬件建模的支持。因此,如果我是 ASIC 設(shè)計(jì)師,我會(huì)更喜歡 Verilog 而不是 VHDL。

高級(jí)建模

另一方面,如上述圖表所示,VHDL 在高級(jí)硬件建模方面優(yōu)于 Verilog。與 Verilog 相比,VHDL 為高級(jí)硬件建模提供了更多功能和構(gòu)造。以下是在比較 VHDL 和 Verilog 時(shí)支持高級(jí)硬件建模的主要不同功能:

?VHDL 中的用戶定義數(shù)據(jù)類型

Verilog 的數(shù)據(jù)類型非常簡(jiǎn)單,都是用 Verilog 語(yǔ)言定義的(用戶不能在 Verilog 中定義自己的數(shù)據(jù)類型)。Verilog 有兩種主要的數(shù)據(jù)類型,包括 net 數(shù)據(jù)類型(用于將組件連接在一起,例如wire(最流行)、wor、wand、tri、trior 等)和變量數(shù)據(jù)類型(用于臨時(shí)存儲(chǔ),例如reg(最流行),整數(shù)、時(shí)間、實(shí)數(shù)和實(shí)時(shí))。

VHDL支持許多不同的數(shù)據(jù)類型,包括預(yù)定義的 VHDL 數(shù)據(jù)類型和用戶定義的數(shù)據(jù)類型。預(yù)定義的 VHDL 數(shù)據(jù)類型包括位、位向量、字符串、時(shí)間、布爾值、字符和數(shù)字(實(shí)數(shù)或整數(shù))。VHDL 允許設(shè)計(jì)人員根據(jù)預(yù)定義的 VHDL 數(shù)據(jù)類型定義不同的類型;對(duì)于可能使用許多不同數(shù)據(jù)類型的復(fù)雜和高級(jí)系統(tǒng)來(lái)說(shuō),這是一個(gè)很好的功能。以下是用于定義新數(shù)據(jù)類型的示例 VHDL 代碼:

type int_8bit is range 0 to 255 -- define 8-bit unsigned numbers
signal i : int_8bit;
type state_FSM is (Idle, start, calculate , finish, delay) 
-- define symbolic states to represent FSM states.
signal current_state, next_state: state_FSM;

?VHDL 中的設(shè)計(jì)重用包

VHDL 中的包通常用于數(shù)據(jù)類型和子程序的聲明。VHDL 包中聲明的子程序或數(shù)據(jù)類型可用于許多不同的實(shí)體或體系結(jié)構(gòu)。例如:

package fsm_type is 
type FSM_states is (IDLE, TRANSMIT, RECEIVE, STOP);
end package
-- to use the FSM_states type in an entity or architecture
-- use the following statement on top of the entity
use work.fsm_type.all
entity example is

Verilog 中沒(méi)有包定義。與 VHDL 包最接近的 Verilog 等效項(xiàng)是`includeVerilog 編譯器指令。函數(shù)或定義可以單獨(dú)保存在另一個(gè)文件中,然后通過(guò)使用`include指令在模塊中使用它。下面是一個(gè) Verilog 示例代碼:

// Below is the content of "VerilogVsVHDL.h" file
`define INPUT_VERILOG "./test_VerilogvsVHDL.hex" // Input file name 
`define OUTPUT_VHDL "VHDL.bmp" // Output file name 
`define VERILOG_VHDL_DIFFERENCE




// Then call it in every single module that you want to use the definition above
`include "VerilogVsVHDL.h"

?VHDL 中的配置語(yǔ)句

一個(gè) VHDL 設(shè)計(jì)可以為一個(gè)實(shí)體獲得許多具有不同體系結(jié)構(gòu)的設(shè)計(jì)實(shí)體。配置語(yǔ)句將確切的設(shè)計(jì)實(shí)體與設(shè)計(jì)中的組件實(shí)例相關(guān)聯(lián)。當(dāng)實(shí)體中有多個(gè)架構(gòu)時(shí),配置語(yǔ)句會(huì)繼續(xù)指定所需的設(shè)計(jì)架構(gòu)分配給實(shí)體以進(jìn)行綜合或仿真。當(dāng) VHDL 設(shè)計(jì)人員需要管理大型高級(jí)設(shè)計(jì)時(shí),此功能非常有用。

以下是配置語(yǔ)句的 VHDL 示例代碼:

entity BUF is
  generic (DELAY : TIME := 10 ns);
  port ( BUF_IN : in BIT; BUF_OUT : out BIT);
end BUF;
-- The first design architecture for BUF 
architecture STRUCT_BUF1 of BUF is
signal temp: bit;
begin
  BUF_OUT <=< span=""> not temp after DELAY;
  temp <=< span=""> not BUF_IN after DELAY;
end STRUCT_BUF1;
-- The second design architecture for BUF 
architecture STRUCT_BUF2 of BUF is
begin
  BUF_OUT <=< span=""> BUF_IN after 2*DELAY;;
end STRUCT_BUF2;
-- Testbench to simulate BUF entity 
entity BUF_TESTBENCH is 
end BUF_TESTBENCH;
architecture STRUCT_BUF_TEST of BUF_TESTBENCH is
signal TEST1, TEST2 : BIT := '1';
-- BUF_COMP component declaration:
component BUF_COMP is
  generic (TIME_DELAY : TIME);
  port ( IN1 : in BIT; OUT1 : out BIT );
end component;
begin
  -- instantiation of BUF_COMP component:
  DUT:BUF_COMP generic map (10 ns) port map (TEST1,TEST2);
end STRUCT_BUF_TEST;
-- Configuration specify the design entity and architecture
-- for the DUT component instance in the testbench above
configuration CONFIG_BUF of TEST_BUF is
-- Associate BUF_COMP component instance to BUF design entity
-- and STRUCT_BUF1 design architecture for simulation 
for STRUCT_BUF_TEST 
  for DUT : BUF_COMP 
    use entity WORK.BUF (STRUCT_BUF1)
    generic map (DELAY => TIME_DELAY)
    port map (BUF_IN => IN1, BUF_OUT => OUT1);
  end for;
end for ;
end CONFIG_BUF;

Verilog-2001 中還添加了配置塊。

?VHDL 中的庫(kù)管理

同時(shí)查看 Verilog 和 VHDL 代碼時(shí),最明顯的區(qū)別是 Verilog 沒(méi)有庫(kù)管理,而 VHDL 在代碼頂部包含設(shè)計(jì)庫(kù)。VHDL 庫(kù)包含已編譯的架構(gòu)、實(shí)體、包和配置。此功能在管理大型設(shè)計(jì)結(jié)構(gòu)時(shí)非常有用。上面已經(jīng)給出了 VHDL 中的包和配置示例。以下是 VHDL 中庫(kù)管理的 VHDL 示例代碼:

-- library management in VHDL
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.numeric_std.all;
use work.clock_div.all;

簡(jiǎn)而言之,VHDL 在高級(jí)硬件建模方面比 Verilog 更好。由于 FPGA 設(shè)計(jì)流程不需要低級(jí)硬件建模,如果我是 FPGA 設(shè)計(jì)師,我更喜歡 VHDL 而不是 Verilog。

值得一提的是,SystemVerilog 的創(chuàng)建是為了通過(guò)將 VHDL 中的高級(jí)功能和結(jié)構(gòu)添加到 Verilog 中進(jìn)行驗(yàn)證來(lái)增強(qiáng) Verilog 語(yǔ)言在高級(jí)建模中的弱點(diǎn)。SystemVerilog 現(xiàn)在廣泛用于 IC 驗(yàn)證。

冗長(zhǎng)(Verboseness:):Verilog 與 VHDL

?VHDL 是強(qiáng)類型的vs Verilog 是松散類型的

VHDL 是一種非常強(qiáng)類型的硬件描述語(yǔ)言,因此必須使用匹配和定義的數(shù)據(jù)類型正確編寫(xiě) VHDL 代碼。這意味著如果在 VHDL 中分配時(shí)混合數(shù)據(jù)類型或不匹配信號(hào),將會(huì)出現(xiàn)編譯錯(cuò)誤。另一方面,Verilog 是一種松散類型的語(yǔ)言。在 Verilog 中,您可以在分配時(shí)混合數(shù)據(jù)類型或不匹配信號(hào)。下面是不匹配信號(hào)的 VHDL 示例代碼:

signal test_reg1:  std_logic_vector(3 downto 0); 
signal test_reg2:  std_logic_vector(7 downto 0); 
test_reg2 <=< span=""> test_reg1;
-- You cannot assign a 4-bit signal to an 8-bit signal 
-- in VHDL, it will introduce a syntax error below:
-- Width mismatch. Expected width 8, Actual width is 4 
-- for dimension 1 of test_reg1.

編譯上面的VHDL代碼時(shí),會(huì)出現(xiàn)語(yǔ)法錯(cuò)誤“Width mismatch. Expected width 8, Actual width is 4”。如果將VHDL代碼改為“test_reg2 <= "0000"&test_reg1;?"匹配位寬,則不會(huì)出現(xiàn)語(yǔ)法錯(cuò)誤。?
如果在 Verilog 中將 4 位信號(hào)分配給 8 位信號(hào)會(huì)怎樣?

  wire [3:0] test1;
  wire [7:0] test2;
  // In Verilog, you can assign 4-bit signal to 8-bit signal.
  assign test2 = test1;
  // there will be no syntax error during synthesis

當(dāng)您將 4 位信號(hào)分配給 8 位信號(hào)時(shí),Verilog 編譯器不會(huì)引入語(yǔ)法錯(cuò)誤。在 Verilog 中,不同位寬的信號(hào)可以相互分配。Verilog 編譯器將使源信號(hào)的寬度適應(yīng)目標(biāo)信號(hào)的寬度。未使用的位將在綜合期間進(jìn)行優(yōu)化。
下面是在分配信號(hào)時(shí)混合數(shù)據(jù)類型的另一個(gè) VHDL 示例:

signal test1: std_logic_vector(7 downto 0);
signal test2: integer;
test2 <=< span=""> test1;
-- Syntax Error: type of test2 is incompatile with type of test1

上面的 VHDL 代碼會(huì)引入一個(gè)語(yǔ)法錯(cuò)誤“(type of test2 is incompatible with type of test1)test2 的類型與 test1 的類型不兼容”。你必須轉(zhuǎn)換test1的分配之前整數(shù)數(shù)據(jù)類型TEST1到TEST2如下:

library IEEE;
USE ieee.numeric_std.ALL;
signal test1: std_logic_vector(3 downto 0);
signal test2: integer;
-- Use IEEE.NUMBERIC_STD.ALL Library for this conversion
test2 <=< span=""> to_integer(unsigned(test1));
-- No syntax errors this time

另一方面,Verilog 在分配時(shí)混合數(shù)據(jù)類型時(shí)沒(méi)有問(wèn)題。以下是一個(gè) Verilog 示例:

reg [3:0] test1;
  integer test2;
  always @(test1) begin
   test2 = test1;
  end
         // NO syntax errors when compiling

當(dāng)您將具有reg數(shù)據(jù)類型的信號(hào)分配給具有不同數(shù)據(jù)類型(如integer )的另一個(gè)信號(hào)時(shí),Verilog 編譯器不會(huì)像在 VHDL 中那樣引入語(yǔ)法錯(cuò)誤。

?VHDL 復(fù)雜數(shù)據(jù)類型與 Verilog 簡(jiǎn)單數(shù)據(jù)類型

如上所述,VHDL 有許多不同的復(fù)雜數(shù)據(jù)類型,用戶還可以定義許多其他復(fù)雜數(shù)據(jù)類型。這也使得 VHDL 比 Verilog 更冗長(zhǎng),因?yàn)?Verilog 只有 2 種主要數(shù)據(jù)類型,并且 Verilog 中不允許用戶定義的數(shù)據(jù)類型。

換句話說(shuō),為了對(duì)同一電路建模,VHDL 代碼通常比 Verilog 代碼更冗長(zhǎng)、更長(zhǎng),因?yàn)?VHDL 的強(qiáng)類型,我們需要在不同的復(fù)雜數(shù)據(jù)類型之間執(zhí)行轉(zhuǎn)換。它可以是優(yōu)點(diǎn)也可以是缺點(diǎn)。事實(shí)上,當(dāng)您在 VHDL 代碼中分配錯(cuò)誤的內(nèi)容時(shí),VHDL 編譯器更有可能引入語(yǔ)法錯(cuò)誤。當(dāng)您成功編譯 VHDL 代碼時(shí),與 Verilog 相比,您的 VHDL 代碼更有可能正常工作。另一方面,Verilog 是松散類型的,更簡(jiǎn)潔,更簡(jiǎn)單。但是編譯成功后,很有可能你的Verilog代碼中仍然存在錯(cuò)誤。

下面是另一個(gè)使 VHDL 比 Verilog 更冗長(zhǎng)的示例代碼:

-- VHDL code for ALU 
process(SEL,ABUS,BBUS,tmp1,tmp2)
begin 
case(SEL) is
 when "0000" =>  ALUOUT <=< span=""> tmp1; -- ADD
 when "0001" =>  ALUOUT <=< span=""> tmp2;-- SUB 
 when "0010" =>  ALUOUT <=< span=""> BBUS; -- AND
 when others => ALUOUT <=< span=""> ABUS; 
 end case;
end process;
// Verilog equivalent to VHDL ALU 
assign ALUOUT=(SEL==0)?tmp1:((SEL==1)?tmp2:((SEL==2)?BBUS:ABUS));

VHDL 中的 if else、when/else、with/select 語(yǔ)句可以在 Verilog 中使用條件運(yùn)算符 (?) 表達(dá)得更簡(jiǎn)潔,如上例所示。

Verilog 和 VHDL 之間的其他區(qū)別:

?Verilog 類似于C 編程語(yǔ)言,而 VHDL 類似于Ada或 Pascal 編程語(yǔ)言

?Verilog 區(qū)分大小寫(xiě),而 VHDL 不區(qū)分大小寫(xiě)。這意味著DAta1和Data1在Verilog中是兩個(gè)不同的信號(hào),但在VHDL中是相同的信號(hào)。

?在 Verilog 中,要在模塊中使用組件實(shí)例,您只需在模塊中使用正確的端口映射對(duì)其進(jìn)行實(shí)例化。在VHDL中,在實(shí)例化實(shí)例之前,如果您使用舊的實(shí)例化語(yǔ)句作為以下示例,則通常需要將組件聲明為架構(gòu)或包中。在 VHDL-93 中,您可以像這樣直接實(shí)例化實(shí)體:“Label_name: entity work.component_name port map (port list);”。

例如,要在 VHDL 中實(shí)例化實(shí)體 clk_div,將在體系結(jié)構(gòu)代碼中添加一個(gè)組件聲明,如下所示:

architecture Behavioral of digital_clock is
-- component declaration before instantiation below
component clk_div
port (
 clk_50: in std_logic;
 clk_1s : out std_logic
 );
end component;
signal clk, clk_1s: std_logic;
begin
-- component instantiation
create_1s_clock: clk_div port map (clk_50 => clk, clk_1s => clk_1s); 
end

或者在包中聲明組件以供重用:

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
package clock_div_pack is 
component clk_div is
 port (
         clk_50: in std_logic;
         clk_1s : out std_logic
 );
end component clk_div;
end package;
-- Declare the component in a separate package and 
-- reuse by using the following statement:
use work.clock_div_pack.all;
entity clock is
end clock;
architecture Behavioral of clock is
signal clk, clk_1s: std_logic;
begin
create_1s_clock: clk_div port map (clk_50 => clk, clk_1s => clk_1s); 
end


在 VHDL-93 中直接實(shí)例化實(shí)體的示例代碼:

create_1s_clock: entity work.clk_div port map (clk_50 => clk, clk_1s => clk_1s);

?Verilog 具有編譯器指令,例如`timescale(聲明時(shí)間單位和延遲精度)、`define(將文本字符串聲明為宏名稱)、`ifdef、ifndef `else `elseif `endif(條件編譯)、`include(包括一個(gè)可以包含函數(shù)或其他聲明的文件)等。VHDL 沒(méi)有編譯器指令。

?VHDL 支持枚舉和記錄數(shù)據(jù)類型,允許用戶為一種數(shù)據(jù)類型定義多個(gè)信號(hào)。Verilog 不支持枚舉和記錄類型。下面是枚舉和記錄類型的 VHDL 代碼:

type FSM is (IDLE, TEST, VERILOGvsVHDL, STOP, FPGA4student);
-- enumerated type
type int_4 is range 0 to 15;
-- record tye in VHDL
type record_example is record
 data1: integer;
 data2: int_4;
 data3: FSM;
end record;


?等等。

盡管 Verilog 和 VHDL 之間存在差異,但它們是兩種最流行的硬件描述語(yǔ)言。如果可以,最好同時(shí)學(xué)習(xí)它們。重要的是要記住,在編碼時(shí)始終考慮邏輯門(mén)或硬件以開(kāi)發(fā)硬件編碼思維,而在使用 Verilog 和 VHDL 編碼時(shí)忘記軟件編程思維,這一點(diǎn)非常重要。








審核編輯:劉清

聲明:本文內(nèi)容及配圖由入駐作者撰寫(xiě)或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • NAND
    +關(guān)注

    關(guān)注

    16

    文章

    1666

    瀏覽量

    135931
  • asic
    +關(guān)注

    關(guān)注

    34

    文章

    1183

    瀏覽量

    120221
  • VHDL語(yǔ)言
    +關(guān)注

    關(guān)注

    1

    文章

    113

    瀏覽量

    17974
  • 編譯器
    +關(guān)注

    關(guān)注

    1

    文章

    1617

    瀏覽量

    49015
  • Verilog HDL
    +關(guān)注

    關(guān)注

    17

    文章

    125

    瀏覽量

    50370

原文標(biāo)題:例說(shuō)Verilog HDL和VHDL區(qū)別,助你選擇適合自己的硬件描述語(yǔ)言

文章出處:【微信號(hào):Open_FPGA,微信公眾號(hào):OpenFPGA】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。

收藏 人收藏

    評(píng)論

    相關(guān)推薦

    FPGA編程是用VHDL還是verilog HDL好用?謝謝了!

    [color=#444444 !important]FPGA編程是用VHDL還是verilog HDL好用?謝謝了!
    發(fā)表于 06-19 17:39

    VHDLverilog HDL講解

    VHDLverilog HDL講解
    發(fā)表于 10-09 20:32

    如何用VHDLVerilog HDL實(shí)現(xiàn)設(shè)計(jì)輸入?

    如何在ALTERA公司的Quartus II環(huán)境下用VHDLVerilog HDL實(shí)現(xiàn)設(shè)計(jì)輸入,采用同步時(shí)鐘,成功編譯、綜合、適配和仿真,并下載到Stratix系列FPGA芯片EP1S25F780C5中。
    發(fā)表于 04-15 06:19

    X-HDL v3.2.55 VHDL/Verilog語(yǔ)言翻譯器

    X-HDL:軟件簡(jiǎn)介—SoftWare Description: X-HDL v3.2.55 VHDL/Verilog語(yǔ)言翻譯器 一款
    發(fā)表于 03-25 12:00 ?355次下載

    VHDLVerilog HDL語(yǔ)言對(duì)比

    VHDLVerilog HDL語(yǔ)言對(duì)比 Verilog HDLVHDL都是用于邏輯設(shè)計(jì)的硬
    發(fā)表于 02-09 09:01 ?1w次閱讀

    Verilog HDLVHDL及FPGA的比較分析

    Verilog HDLVHDL及FPGA的比較分析. Verilog HDL優(yōu)點(diǎn):類似C語(yǔ)言,上手容易,靈活。大小寫(xiě)敏感。在寫(xiě)激勵(lì)和建模方
    發(fā)表于 01-11 10:45 ?1350次閱讀

    Verilog HDL程序設(shè)計(jì)-135

    verilog HDL基礎(chǔ)程序135,適合初學(xué)者。
    發(fā)表于 11-06 09:49 ?23次下載

    VHDLVerilog互轉(zhuǎn)的軟件

    VHDLVerilog互轉(zhuǎn)的軟件, X-HDL v4.21 Crack.zip
    發(fā)表于 06-03 16:16 ?10次下載

    vhdlverilog區(qū)別_vhdlverilog哪個(gè)好?

    國(guó)國(guó)防部確認(rèn)為標(biāo)準(zhǔn)硬件描述語(yǔ)言 。Verilog HDL是一種硬件描述語(yǔ)言(HDL:Hardware Description Language),以文本形式來(lái)描述數(shù)字系統(tǒng)硬件的結(jié)構(gòu)和行為的語(yǔ)言,用它可以表示邏輯電路圖、邏輯表達(dá)式
    發(fā)表于 03-23 16:43 ?12.3w次閱讀
    <b class='flag-5'>vhdl</b>和<b class='flag-5'>verilog</b>的<b class='flag-5'>區(qū)別</b>_<b class='flag-5'>vhdl</b>和<b class='flag-5'>verilog</b>哪個(gè)好?

    Verilog HDL的基礎(chǔ)知識(shí)詳細(xì)說(shuō)明

    硬件描述語(yǔ)言基本語(yǔ)法和實(shí)踐 (1)VHDLVerilog HDL的各自特點(diǎn)和應(yīng)用范圍 (2)Verilog HDL基本結(jié)構(gòu)語(yǔ)言要素與
    發(fā)表于 07-03 17:36 ?54次下載
    <b class='flag-5'>Verilog</b> <b class='flag-5'>HDL</b>的基礎(chǔ)知識(shí)詳細(xì)說(shuō)明

    Verilog HDLVHDL區(qū)別

    的。這個(gè)是因?yàn)?VHDL 是美國(guó)軍方組織開(kāi)發(fā)的,而 Verilog 是一個(gè)公司的私有財(cái)產(chǎn)轉(zhuǎn)化而來(lái)的。為什么 Verilog 能成為 IEEE 標(biāo)準(zhǔn)呢?它一定有其優(yōu)越性才行,所以說(shuō)
    的頭像 發(fā)表于 06-17 16:13 ?1.4w次閱讀

    Verilog HDL語(yǔ)言技術(shù)要點(diǎn)

    的是硬件描述語(yǔ)言。最為流行的硬件描述語(yǔ)言有兩種Verilog HDL/VHDL,均為IEEE標(biāo)準(zhǔn)。Verilog HDL具有C語(yǔ)言基礎(chǔ)就很容
    的頭像 發(fā)表于 09-01 11:47 ?4336次閱讀
    <b class='flag-5'>Verilog</b> <b class='flag-5'>HDL</b>語(yǔ)言技術(shù)要點(diǎn)

    Verilog HDL教程135免費(fèi)下載

    本文檔的主要內(nèi)容詳細(xì)介紹的是Verilog HDL教程135免費(fèi)下載。
    發(fā)表于 01-21 16:30 ?71次下載
    <b class='flag-5'>Verilog</b> <b class='flag-5'>HDL</b>教程135<b class='flag-5'>例</b>免費(fèi)下載

    Verilog HDL verilog hdlvhdl區(qū)別

    Verilog HDL是一種以文本形式描述數(shù)字系統(tǒng)硬件的結(jié)構(gòu)和行為的硬件描述語(yǔ)言,也可描述邏輯電路圖、邏輯表達(dá)式等。Verilog HDLVHDL
    的頭像 發(fā)表于 07-23 14:36 ?1.1w次閱讀

    Verilog HDL入門(mén)教程-Verilog HDL的基本語(yǔ)法

    Verilog HDL入門(mén)教程-Verilog HDL的基本語(yǔ)法
    發(fā)表于 01-07 09:23 ?178次下載