代码搜索:Carry
找到约 8,060 项符合「Carry」的源代码
代码结果 8,060
www.eeworm.com/read/460207/7255740
bak counta3d5_tb.v.bak
module counta3d5_tb;
reg rst,clk,up,dn;
reg [7:0]din;
wire[7:0]dout;
wire par,carry,borrow;
initial din=8'b11010011;
always #1 clk=~clk;
initial begin
clk=0;
www.eeworm.com/read/460207/7255741
v countu3d5_tb.v
module countu3d5_tb;
reg rst,clk,up,dn;
reg [7:0]din;
wire[7:0]dout;
wire par,carry,borrow;
initial din=8'b11010011;
always #1 clk=~clk;
initial begin
clk=0;
www.eeworm.com/read/458099/7313174
h function.h
#ifndef functionh
#define functionh
#include "macro.h"
#include "struct.h"
void RealTimeFoun(int mode);
void PortDataOut(void);
void ClearPort(int mode=0);
void QueuePush(QUEUE **PointHead,QUEU
www.eeworm.com/read/457549/7322985
c 大加数.c
/*这是一个大正数加法问题TC中应该完全可以运行。 */
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE;
NODE *insert(NODE *u,int num) /*声
www.eeworm.com/read/455799/7365484
abl seccntr.abl
MODULE seccntr
TITLE 'Seconds Counter with Carry Output'
"Inputs
CLK,HOLD PIN ;
"Outputs
COUT PIN istype 'COM';
"Nodes
SC5, SC4, SC3, SC2, SC1, SC0
www.eeworm.com/read/452071/7447826
java test.java
/*---- 测试用例文件 ----*/
static final float PI = 3.141592654f;
static final double ME = 1.9e-31;
static final char[] map = {'\u661F', '\t', '*', '\206', ' ', '\''};
public class LexTest
extends
www.eeworm.com/read/450798/7476697
c 大加数.c
/*这是一个大正数加法问题TC中应该完全可以运行。 */
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE;
NODE *insert(NODE *u,int num) /*声
www.eeworm.com/read/450798/7476702
c 大整数.c
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE; //定义链表结构
NODE *insert(u,num)//在u节点之后插入一个新的NODE,其值为NUM
NODE *u;
int num;
www.eeworm.com/read/450468/7483624
v counter.v
//The top module 60s counter
module counter(clk,rst,en,load,q);
input clk,rst,en,load;
output[15:0] q;
reg[15:0] q;
wire[15:0] qout;
wire[1:0] cnt,carry;
count100 count_1(.clk(clk),.rst(r
www.eeworm.com/read/449694/7497983
c 大加数.c
/*这是一个大正数加法问题TC中应该完全可以运行。 */
#include
#include
#define HUN 10000
typedef struct node
{
int data;
struct node *next;
}NODE;
NODE *insert(NODE *u,int num) /*声