代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/340289/12167596
asm prog7.asm
; PROG7 - Accessing Bits
;
; This Program Reads and Writes individual Bits in the Bit Addressable Area
; of the Scractchpad RAM (Addresses 020 to 02F) and the I/O Ports.
;
; This program wil
www.eeworm.com/read/339051/12264614
v half_adder_2.v
module half_adder(a,b,out,carry);
input a,b;
output out,carry;
assign out=a^b;
assign carry=a&b;
endmodule
www.eeworm.com/read/339051/12264620
v half_adder_1.v
module half_adder(a,b,out,carry);
input a,b;
output out,carry;
assign {carry,out}=a+b;
endmodule
www.eeworm.com/read/339051/12264666
v adder_8bit.v
module adder_8bit_1(a,b,cin,out,carry);
input [7:0] a, b;
input cin;
output [7:0] out;
output carry;
reg [7:0] out;
reg carry;
always@(a or b
www.eeworm.com/read/339051/12265666
v half_adder_2.v
module half_adder(a,b,out,carry);
input a,b;
output out,carry;
assign out=a^b;
assign carry=a&b;
endmodule
www.eeworm.com/read/339051/12265669
v half_adder_1.v
module half_adder(a,b,out,carry);
input a,b;
output out,carry;
assign {carry,out}=a+b;
endmodule
www.eeworm.com/read/339051/12265689
v adder_8bit.v
module adder_8bit_1(a,b,cin,out,carry);
input [7:0] a, b;
input cin;
output [7:0] out;
output carry;
reg [7:0] out;
reg carry;
always@(a or b
www.eeworm.com/read/338797/12282620
cpp dsa.cpp
// dsa.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#ifndef CRYPTOPP_IMPORTS
#include "dsa.h"
#include "nbtheory.h"
NAMESPACE_BEGIN(CryptoPP)
size_t DSACon
www.eeworm.com/read/149400/12382833
txt avr的开方子程序.txt
用【 小 | 中 | 大 】字体浏览
AVR单片机:xiaoqi老师!?!?! [大天] [43次] 01-11-8 下午 07:15:56
老师?@?
那里有AVR的开方子程序?@
被开方数要是一个字.??@@
给我留言好吗!??
http://www.avr-forum.com/avrsource.html [晓奇.] [10次] 01-11-8 下午 07:1
www.eeworm.com/read/149081/12404914
asm ggt.asm
; GCD using Dijkstras Algorithm
;
; 12.01.01 Tim Boescke
USE "cpu3.inc"
start:
NOR allone ;Akku = 0
NOR b
ADD one ;Akku = - b
ADD a ;Akku = a - b
;Carry set when akku >= 0
JC