代码搜索结果

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

default_hook_functions.c

/* default no op hook functions */ void OSInitHookBegin(void) {} void OSTCBInitHook(void *junk) {} void OSInitHookEnd(void) {}

cosinestring.m

function s = cosinestring(Amp, Freq, Phase, Delay, DC) %COSINESTRING Gets the formula string for the COSINE object. % s = COSINESTRING(Amp,Freq,Phase,Delay,DC) returns a formatted string s % repre

student.lsp

;exp's form = (op lhs rhs) (defun exp-lhs (e) (second e)) (defun exp-rhs (e) (third e)) (defun exp-op (e) (first e)) (defun swap-exp(e) `(,(exp-op e) ,(exp-rhs e) ,(exp-lhs e)) ) (defun

show.js

//sogou var Index_top_468_60="

safearray.html

class SafeArray { public: SafeArray(int s); SafeArray(const int v[], int s); int& operator[](int i); int operator[](int i) const; private: int size; int*

telephone.cpp.html

telephone.cpp 1 # include "telephone.h" 2 # include "connection.h" 3 4 void Telephone::run(Connection& c) 5 { 6

test.t

Symble Table as Below: t IntT d IntT j IntT i IntT Syntax Tree as Below: Output Const: 62 Assign to: t Input Assign to: t Op: - Id: t Const: 48

test.t

Symble Table as Below: t IntT d IntT j IntT i IntT Syntax Tree as Below: Output Const: 62 Assign to: t Input Assign to: t Op: - Id: t Const: 48

alu.v

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

alutest.v

module ALUtest; reg [1:0]op; reg [31:0]a,b; wire [31:0]s; wire n,v,c,z; //op=00 AND; //op=01 OR; //op=10 ADD; //op=11 SUB; ALU A(op,a,b,s,n,v,c,z); initial begin #50 a=32'b0100_0101_01