代码搜索结果
找到约 10,000 项符合
Serial 的代码
serial_pal.v
module serial_pal(clk,reset,en,in,out);
input clk,reset,en,in;
output[3:0] out;
reg[3:0] out;
always @(posedge clk)
begin
if(reset) out
serial2.v
module serial2(q,a,clk);
output q,a;
input clk;
reg q,a;
always @(posedge clk)
begin
a=~q;
q=~q;
end
endmodule
serial1.v
module serial1(q,a,clk);
output q,a;
input clk;
reg q,a;
always @(posedge clk)
begin
q=~q;
a=~q;
end
endmodule
serial.o.d
serial.o: ../serial.c \
c:/winavr-20090313/lib/gcc/../../avr/include/avr/pgmspace.h \
c:/winavr-20090313/lib/gcc/../../avr/include/inttypes.h \
c:/winavr-20090313/lib/gcc/../../avr/include/st
salvo_serial.txt
Salvo 2.2.0
Copyright (C)1996-2001 by Pumpkin, Inc.
http://www.pumpkininc.com/
Serial Number (the only one): 2161
Salvo - the Cooperative, Multitasking RTOS
----------------------------
serial.rc2
//
// SERIAL.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
////
serial to parallel.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
serial to parallel.lnp
"Serial to Parallel.obj"
TO "Serial to Parallel"