代码搜索结果
找到约 10,000 项符合
Timer 的代码
timer.hx
package flash.utils;
extern class Timer extends flash.events.EventDispatcher {
function new(delay : Float, ?repeatCount : Int) : Void;
var currentCount(default,null) : Int;
var delay : Float;
var
timer.lds
SECTIONS {
firtst 0x00000000 : { head.o init.o }
second 0x30000000 : AT(4096) { main.o interrupt.o }
}
timer.lis
.module Timer.C
.area data(ram, con, rel)
0000 _Table::
0000 .blkb 2
.area idata
0000 3F06
timer.o
XL
H 4 areas 12 global symbols
M Timer.C
S mpy8s Ref0000
S push_gset1 Ref0000
S push_gset2 Ref0000
S push_gset3 Ref0000
S pop_gset1 Ref0000
S pop_gset2 Ref0000
S pop_gset3 Ref0000
S div8u Re
timer.s
.module Timer.C
.area data(ram, con, rel)
_Table::
.blkb 2
.area idata
.byte 63,6
.area data(ram, con, rel)
.blkb 2
.area idata
.byte 91,'O
.area data(ram, con, rel)
.blkb 2
.a
timer.c
//***************FileName:Timer.C******************//
//***************ICCAVR V6.30编译*****************//
#include
#define uchar unsigned char
#define uint unsigned
timer.c
#include
#include
#include
int alphanum = 0;
int counter = 0;
void interrupt far handler(void)
{
if (++counter == 273) // 15 seconds
{
alph
timer.asm
;******************************************************
;* 文件名:Timer.asm
;* 创建日期:2001.7.4
;* 作者:陈文尧
;* 功能:利用内存驻留显示时钟
;******************************************************
include system.inc
timer.h
#ifndef __TIMER_H__
#define __TIMER_H__
void Test_Timer(void);
void Test_WDTimer(void);
void Test_TimerInt(void);
#endif /*__TIMER_H__*/
timer.c
#include
#include "..\inc\44b.h"
#include "..\inc\44blib.h"
#include "..\inc\timer.h"
void __irq Timer0Done(void);
void __irq Timer1Done(void);
void __irq Timer2Done(void);
void __