代码搜索:Add
找到约 10,000 项符合「Add」的源代码
代码结果 10,000
www.eeworm.com/read/211745/15174358
vhd shift_add.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
entity shift_add is
port(indata:in std_logic_vector(10 downto 0);
clk:in std_logic;
add_en: in std_logic;
www.eeworm.com/read/211745/15174554
gdf add8.gdf
www.eeworm.com/read/211745/15174556
gdf add4.gdf
www.eeworm.com/read/211745/15174632
vhd add_a_f.vhd
--addr_a_f
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity addr_a_f is
port(
sel: in std_logic_vector( 1 downto 0);
sel_a_f: in std_logic;
www.eeworm.com/read/210839/15191758
il add_symbol.il
; add_symbol.il
;
; Used to add a symbol to the database
; 01/17/2001 Ron Guthrie
; Initial release.
; 10/02/2001 Ron Guthrie
; Release 2
; -Ability to set the part using the
www.eeworm.com/read/210806/15192056
v half_add.v
//1-bit half adder
//filename : half_add.v
module half_add(s, cout, a, b);
output s, cout; // sum and carry out
input a, b;
assign s = a^ b;
assign cout = a & b;
endmodule