代码搜索结果
找到约 216,410 项符合
Test 的代码
test.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,2, 0x0
File 1,1,
test.lnp
"STARTUP.obj",
"test.obj"
TO "test"
RAMSIZE(256)
test.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,2, 0x0
File 1,1,
test.plg
礦ision3 Build Log
Project:
D:\开发板资料\00IC-51开发板资料\00IC-51开发板实例程序\数码管扫描\test.uv2
Project File Date: 05/01/2006
Output:
Build target 'Target 1'
test.lnp
"STARTUP.obj",
"test.obj"
TO "test"
RAMSIZE(256)
test.aps
test05-Mar-2009 09:48:0216-Mar-2009 16:53:02241005-Mar-2009 0
test.plg
礦ision3 Build Log
Project:
E:\LEARN\单片机\新建文件夹\test.uv2
Project File Date: 04/08/2009
Output:
Build target 'Target 1'
Target has no object mod
test.lnp
"Text1.obj"
TO "test"
RAMSIZE(256)
test.v
module Test;
reg clock,updn;
wire[0:3]cnt_out;
countupdown c1(clock,cnt_out,updn);
always #1 clock=~clock;
initial begin
clock=0;
updn=0;
#50 updn=1;
#100 $dumpflush;
$stop;
end
ini