代码搜索结果

找到约 16,374 项符合 Op-Amp 的代码

alu_mux2.v

module ALU(c32,s,op,a,b,v,n); input [1:0]op; input [31:0]a,b; output[31:0]s; output n,v,c,z; input ci; wire [31:0]d,e,f,s1; assign d=a&b; assign e=a|b; mux21_32 mux1(op[0],a,b,f); add add(c32,s1,op[

alu_alu.v

module ALU(c32,s,op,a,b,ci,v,z,n); input [1:0]op; input [31:0]a,b; output[31:0]s; output n,v,c32,z; input ci; wire z; wire [31:0]d,e,f,s1; assign d=a&b; assign e=a|b; mux21_32 mux1(op[0],a,b,f); add

alu_test.v

module alu_test; reg clock; reg ci; reg [1:0]op; reg [31:0]a,b; wire [31:0]s; wire n,v,c,z; initial begin a=32'b0; b=32'b0; op=2'b0; clock=1'b0;

mampres.c

#include #include #include #include "msp.h" void mampres(complex h[],float amp[],int n,float fs,int iamp, char filename[]) { /*------------------------------------

is_operat.c

/*****************************************/ /* 判断一个字符是否为运算符 */ /*文件名is_operat.c,函数名is_operation()*/ /*****************************************/ int is_operation(char op) {

priority.c

/************************************/ /* 求出运算符的优先级 */ /*文件名priority.c,函数名priority()*/ /************************************/ int priority(char op) { switch(op) {

ldpc_demo.m

%clear all; %clc; tic rows=128; cols=256; s=round(rand(1, cols-rows)); %产生H矩阵 H=genH(rows,cols); %使用H矩阵进行LDPC编码 [u,P,rearranged_cols]=ldpc_encode(s,H); SNR=10; amp=1; tx_wavefo

led display.xctl

#&#!!A!!!!Y!%%!$#GFN97>F)(2Z='5!!""

mrflash.c

/* * MIRACL floating-Slash arithmetic * mrflash.c * * Copyright (c) 1988-2001 Shamus Software Ltd. */ #include "miracl.h" #ifdef MR_FLASH void flop(_MIPD_ flash x,flash y,int *op

mampres.c

#include #include #include #include "msp.h" void mampres(complex h[],float amp[],int n,float fs,int iamp, char filename[]) { /*------------------------------------