代码搜索:LEDS
找到约 3,223 项符合「LEDS」的源代码
代码结果 3,223
www.eeworm.com/read/402636/11531178
c leds.c
/*
* The following sample application will flash LEDs connected to PORTB of a
* PIC18F452 microcontroller. The command line used to build this application
* is
*
* mcc18 -p 18f452 -I c:\mcc
www.eeworm.com/read/347532/11658929
suo leds.suo
www.eeworm.com/read/347532/11658935
sln leds.sln
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Leds", "Led\Leds.vbproj", "{6B8DF098-E0FD-44AE-BACE-F6F792F5D1
www.eeworm.com/read/345848/11786957
bmp leds.bmp
www.eeworm.com/read/345183/11832134
hex leds.hex
:020000000130CD
:100030007580FF758901758C15758AA0D28C108D1D
:0D00400002013EB280758C15758AA0013E4C
:00000001FF
www.eeworm.com/read/345183/11832140
lst leds.lst
A51 MACRO ASSEMBLER LEDS 06/03/2005 12:06:07 PAGE 1
MACRO ASSEMBLER A51 V6.12
OBJECT MODULE PLACED IN .\LEDS.OBJ
ASSEMBLER I
www.eeworm.com/read/345183/11832142
obj leds.obj
www.eeworm.com/read/345183/11832145
plg leds.plg
构造目标 'Target 1'
正在汇编 LEDS.asm...
连接中...
正在从 "LEDS" 产生 HEX文件...
"LEDS" - 0 错误 (s), 0 警告 (s).
www.eeworm.com/read/345183/11832148
asm leds.asm
ORG 0000H
AJMP START
ORG 30H
START: MOV P0,#0FFH ;关闭所有的灯
MOV TMOD,#00000001B ;定时/计数器0工作于方式1
MOV TH0,#15H
MOV TL0,#0A0H ;以上两行预置计数5336(15A0H)
SETB TR0 ;定时/计数器0开始运行
LOOP: JBC