代码搜索:adder
找到约 6,792 项符合「adder」的源代码
代码结果 6,792
www.eeworm.com/read/456603/7343827
v adder.v
module adder(cout,sum,a,b,cin);
parameter size=16;
output cout;
output[size-1:0] sum;
input cin;
input[size-1:0] a,b;
assign {cout,sum}=a+b+cin;
endmodule
www.eeworm.com/read/452945/7428943
v adder.v
module add
(
input [31:0] srca, srcb,
output [31:0] sum
);
reg [31:0] carrychain;
integer k;
wire [31:0] g = srca & srcb;
wire [31:0] p = srca ^ srcb;
always @ (srca or src
www.eeworm.com/read/451233/7468920
v adder.v
// megafunction wizard: %LPM_ADD_SUB%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: lpm_add_sub
// ============================================================
// File Name: adder.v
//
www.eeworm.com/read/451199/7469264
v adder.v
// megafunction wizard: %LPM_ADD_SUB%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: lpm_add_sub
// ============================================================
// File Name: adder.v
//
www.eeworm.com/read/449114/7518195
c adder.c
/*
* adder.c - a minimal CGI program that adds two numbers together
*/
/* $begin adder */
#include "csapp.h"
int main(void) {
char *buf, *p;
char arg1[MAXLINE], arg2[MAXLINE], content[MAXLI
www.eeworm.com/read/441072/7676391
v adder.v
// megafunction wizard: %LPM_ADD_SUB%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: lpm_add_sub
// ============================================================
// File Name: adder.v
//
www.eeworm.com/read/436696/7766023
vwf adder.vwf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/436587/7767176
bdf adder.bdf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/436587/7767242
bsf adder.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/435279/7794566
txt adder.txt
// this languge call systemc and very important to simulate the system and teach the student how the micro works
#include "systemc.h"
#define WIDTH 4
SC_MODULE(adder) {
sc_in