代码搜索:C01
找到约 476 项符合「C01」的源代码
代码结果 476
www.eeworm.com/read/406292/11444998
rom dds.rom
@000 CFF
@001 005
@002 040
@003 006
@004 007
@005 026
@006 C03
@007 002
@008 061
@009 C07
@00A 02A
@00B C7E
@00C 024
@00D C01
@00E 020
@00F CAA
@010 916
@011 C01
@012 916
@013 C55
@014 916
@015 A39
@
www.eeworm.com/read/342982/11985269
asm s9-2.asm
ORG 0000H
LJMP MAIN
ORG 030H
MAIN: MOV DPTR,#TAB
MOV R1,#20H
MOV R7,#20H
C01: CLR A
MOVC A,@A+DPTR
MOV @R1,A
INC DPTR
INC R1
DJNZ R7,C01
START: MOV 60H,#00H
MOV R7,#20H
MOV
www.eeworm.com/read/256018/12035179
asm s9-2.asm
ORG 0000H
LJMP MAIN
ORG 030H
MAIN: MOV DPTR,#TAB
MOV R1,#20H
MOV R7,#20H
C01: CLR A
MOVC A,@A+DPTR
MOV @R1,A
INC DPTR
INC R1
DJNZ R7,C01
START: MOV 60H,#00H
MOV R7,#20H
MOV
www.eeworm.com/read/253982/12171036
rom dds.rom
@000 CFF
@001 005
@002 040
@003 006
@004 007
@005 026
@006 C03
@007 002
@008 061
@009 C07
@00A 02A
@00B C7E
@00C 024
@00D C01
@00E 020
@00F CAA
@010 916
@011 C01
@012 916
@013 C55
@014 916
@015 A39
@
www.eeworm.com/read/33555/1037245
asm s9-2.asm
ORG 0000H
LJMP MAIN
ORG 030H
MAIN: MOV DPTR,#TAB
MOV R1,#20H
MOV R7,#20H
C01: CLR A
MOVC A,@A+DPTR
MOV @R1,A
INC DPTR
INC R1
DJNZ R7,C01
START: MOV 60H,#00H
MOV R7,#20H
MOV
www.eeworm.com/read/458768/1584173
asm s9-2.asm
ORG 0000H
LJMP MAIN
ORG 030H
MAIN: MOV DPTR,#TAB
MOV R1,#20H
MOV R7,#20H
C01: CLR A
MOVC A,@A+DPTR
MOV @R1,A
INC DPTR
INC R1
DJNZ R7,C01
START: MOV 60H,#00H
MOV R7,#20H
MOV
www.eeworm.com/read/102363/15785369
rom dds.rom
@000 CFF
@001 005
@002 040
@003 006
@004 007
@005 026
@006 C03
@007 002
@008 061
@009 C07
@00A 02A
@00B C7E
@00C 024
@00D C01
@00E 020
@00F CAA
@010 916
@011 C01
@012 916
@013 C55
@014 916
@015 A39
@
www.eeworm.com/read/465716/7052469
py strings.py
#: c01:strings.py
print "That isn't a horse"
print 'You are not a "Viking"'
print """You're just pounding two
coconut halves together."""
print '''"Oh no!" He exclaimed.
"It's the blemange!"'''
www.eeworm.com/read/465716/7052482
py singletonmetaclass.py
#: c01:SingletonMetaClass.py
class SingletonMetaClass(type):
def __init__(cls,name,bases,dict):
super(SingletonMetaClass,cls)\
.__init__(name,bases,dict)
original_new = cls.__new_
www.eeworm.com/read/140545/13076276
cpp myerror.cpp
//: C01:MyError.cpp
class MyError {
const char* const data;
public:
MyError(const char* const msg = 0) : data (msg) {}
};
void f() {
// Here we "throw" an exception object:
throw MyE