代码搜索结果

找到约 10,000 项符合 Input 的代码

lock.fit.eqn

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and any o

data_mux.fit.eqn

--A1L63 is Select~1527 at LC7 A1L63_p0_out = !disp_select[0] & !disp_select[1] & disp_select[2] & A1[3]; A1L63_p1_out = A2[3] & disp_select[0] & disp_select[1] & !disp_select[2]; A1L63_p2_out = !di

liangzhu.pin

-- Copyright (C) 1991-2006 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and a

del2_5pt.m

function [output]=del2_5pt(input,delx) % DEL2_5PT ... compute the 5 point Laplacian % % [output]=del2_5pt(input,delx) % % DEL2_5PT computes the 5 point approximation to the laplacian operator of

uart.pin

-- Copyright (C) 1991-2007 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and a

dlog4ch.h

/* ============================================================================ File name: DLOG4CH.H Originator : Advanced Embeeded Control (AEC)

funtc148b.dat

#include #include int main(void) { char ch; printf("Input a character:"); ch = getche(); printf(" You input a '%c' ", ch); return 0; }

funtc59b.dat

getc #include int main(void) { char ch; printf("Input a character:"); ch = getc(stdin); printf("The character input was: '%c' ",ch); return 0; }