代码搜索:try
找到约 10,000 项符合「try」的源代码
代码结果 10,000
www.eeworm.com/read/317087/13510570
asm try.asm
DATOUT EQU P2
SDA EQU P3.7
SCL EQU P3.6
NUMB EQU 30H
ADDRH EQU 31H
ADDRL EQU 32H
ADDR EQU 33H
DATH EQU 34H
DATL EQU 35H
ORG 0000H
LJMP MAIN
ORG 0030H
MAIN:
MOV C,P2.0
JC NEXT
www.eeworm.com/read/307094/13729207
m try.m
function MS
Lh = 0;
% if Lh==1,
% error('GSMsim-Error: Lh is constrained to be in the interval [1:4].');
% elseif Lh > 4,
% error('GSMsim-Error: Lh is constrained to be in the interval
www.eeworm.com/read/307012/13733150
f try.f
www.eeworm.com/read/151345/5683697
cpp try.cpp
#include
#include
#include
char Act['i','+'][3]={"S5","EE","R1","S4","AC","R2"};
void main()
{
char *aa=Act['i'];
printf("%c",Act['i'][0]);
getch
www.eeworm.com/read/140779/5781274
c try.c
/*
This program should print either two normal v's, if \v is not
recognized as an escape sequence for the vertical tab (control-K), or
two control-K's, if it is.
On siesta.wustl.edu and ritz.cec.wus
www.eeworm.com/read/125133/6032823
try-devel
#!/bin/sh
cpp "tests/$1.idel" | bin/idelasm >image &&
bin/idelvm -development image >tmp-output &&
diff -q tmp-output "tests/$1.ok"
www.eeworm.com/read/125133/6032836
try-each
#!/bin/sh
action=$1
shift
for p in "$@"
do
if tests/$action "$p"
then echo "passed: $p"
else echo "*** failed: $p ***"; exit 1
fi
done
www.eeworm.com/read/125133/6032857
try-loop
#!/bin/sh
if cpp tests/loop.idel | bin/idelasm >image 2>output
then echo -n
else echo "*** failed1: loop ***"; exit 1
fi
if bin/idelvm -fuel 10000 image >output 2>&1
then echo "*** failed1: loo
www.eeworm.com/read/125133/6032998
try-devel
#!/bin/sh
cpp "tests/$1.idel" | bin/idelasm >image &&
bin/idelvm -development image >tmp-output &&
diff -q tmp-output "tests/$1.ok"
www.eeworm.com/read/125133/6033011
try-each
#!/bin/sh
action=$1
shift
for p in "$@"
do
if tests/$action "$p"
then echo "passed: $p"
else echo "*** failed: $p ***"; exit 1
fi
done