代码搜索:until
找到约 4,232 项符合「until」的源代码
代码结果 4,232
www.eeworm.com/read/384256/8886094
summary ibelieve.map.summary
Analysis & Synthesis Status : Successful - Wed Jul 16 11:00:43 2008
Quartus II Version : 7.2 Build 203 02/05/2008 SP 2 SJ Full Version
Revision Name : Ibelieve
Top-level Entity Name : Ibelieve
Fam
www.eeworm.com/read/427615/8930595
summary lcdfinal.map.summary
Analysis & Synthesis Status : Failed - Wed Feb 18 15:46:24 2009
Quartus II Version : 8.0 Build 215 05/29/2008 SJ Full Version
Revision Name : lcdfinal
Top-level Entity Name : lcdfinal
Family : Cyc
www.eeworm.com/read/427615/8930749
rpt lcdfinal.flow.rpt
Flow report for lcdfinal
Wed Feb 18 15:46:24 2009
Quartus II Version 8.0 Build 215 05/29/2008 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Not
www.eeworm.com/read/284185/8955594
vhd 36_gcd.vhd
entity gcd is
port(start: in bit;
clk : in bit;
din : in bit;
xi,yi: in integer;
dout : out bit;
output:out integer);
end gcd;
architecture behavior of gcd is
begin
process
www.eeworm.com/read/283149/9040182
asm dft.asm
/*_______________________________________________________________________
DFT.ASM ADSP-2106x matrix multiplication
This routine performs the following equation:
A=B*C
where: A,B,C is a 4*
www.eeworm.com/read/382153/9044736
summary uart.map.summary
Analysis & Synthesis Status : Successful - Fri Aug 10 08:20:01 2007
Quartus II Version : 7.0 Build 33 02/05/2007 SJ Full Version
Revision Name : UART
Top-level Entity Name : UART
Family : Cyclone
www.eeworm.com/read/185213/9050112
bas mouse.bas
5 MODE 1
10 REPEAT
20 a$= INKEY$
30 LOCATE 1, 1: PRINT using "###", XMOUSE
40 LOCATE 2, 1: PRINT using "###", YMOUSE
50 UNTIL a$= "CLICK"
www.eeworm.com/read/184327/9109539
pas ac1106.pas
program tju1106;
var
k,a,b,c:qword;
begin
repeat
read(k);
b:=1;c:=1;
repeat
a:=b;b:=c;c:=a+b;
until c>k;
writeln(a*a+b*b);
until seekeof;
end.
www.eeworm.com/read/184327/9109641
pas ac1189.pas
program tju1189;
const
maxn=500;
var
adj:array[1..maxn,1..maxn]of boolean;
route,dist,q:array[1..maxn]of word;
m,n,i,j,f,r:word;
begin
repeat
fillchar(adj,sizeof(adj),0);
f
www.eeworm.com/read/184327/9109683
pas ac1102.pas
program tju1102;
const
maxn=20000;
var
a:array[1..maxn]of word;
n,i,t,u,op,len,maxlen:word;
begin
repeat
read(n);
for i:=1 to n do
read(a[i]);
op:=n;maxlen:=0;