代码搜索:Carry

找到约 8,060 项符合「Carry」的源代码

代码结果 8,060
www.eeworm.com/read/433434/7930406

v counter_4b.v

module counter_4b(count,carry_out,carry_in,clk,reset); output [3:0] count; output carry_out; input clk,reset,carry_in; reg [3:0] count; reg carry_out; initial count=0; function [3:0] increment; inp
www.eeworm.com/read/368409/9696998

v adder8_for.v

//---------------------------------------- //8-bit adder using for loop //Filename : adder8_for.v //---------------------------------------- module adder8_for(sum, cout, a, b, cin); parameter len
www.eeworm.com/read/212599/7097066

v it51_addsub.v

module AddSub1( A, B, Sub, Carry_In, Res, Carry ); input A; input B; input Sub; input Carry_In; output Res; output Carry; reg Res;
www.eeworm.com/read/329914/7109681

vhd day.vhd

library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity day is port( dh,dl: buffer std_logic_vector (3 downto 0); clk : in std_l