代码搜索结果
找到约 10,000 项符合
Clock 的代码
clock.asm
;*********************************************************
; 带有时间设置和秒显示的数字闹钟(1个闹钟功能)
; Date : 2008.3.15 11。0592MHZ晶振
; Create by :lus2008 email:
clock.lst
A51 MACRO ASSEMBLER CLOCK 03/18/2008 23:27:53 PAGE 1
MACRO ASSEMBLER A51 V7.07
OBJECT MODULE PLACED IN clock.OBJ
ASSEMBLER IN
clock.hex
:020000000120DD
:02000B0001935F
:10002000758170D2B0D2B575397D753A0C753B00CB
:10003000753C00752E06752F00C201C200C202D2A7
:10004000B0D2B5758901758CE3758A3375A882D2F3
:100050008C20B20A1201EE20B204D2
clock.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
clock.plg
礦ision2 Build Log
Project:
D:\项目开发\AT89S51单片机基础学习开发板\实验板程序\电子时钟\带一闹钟电子时钟\clock.uv2
Project File Date: 03/17/2008
Output:
Build target 'Target
clock.c
#include
#include
#include // Contains the delay prototype
void main (void)
{
clock_t processor_time;
printf("Processor time consumed %ld\n",
cloc
clock.c
#include
#include
#include // Contains the delay prototype
void main(void)
{
clock_t processor_time;
printf("Processor time consumed %ld\n",
clock
clock.c
#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
#include
#include
#include
#include