代码搜索结果

找到约 43,238 项符合 Clock 的代码

clock.dsp

# Microsoft Developer Studio Project File - Name="Clock" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Con

clock.test

# Commands covered: clock # # This file contains a collection of tests for one or more of the Tcl # built-in commands. Sourcing this file into Tcl runs the tests and # generates output for errors.

clock.c

/* As usual, we start out with the included files. We'll need functions from the time and math libraries for determining the coordinates of the clock hands. */ #include #include #

clock.c

/* clock.c - part of USBasp Autor..........: Thomas Fischl Description....: Provides functions for timing/waiting Licence........: Free under certain conditions. See Do

99s clock.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,2, 0x0 Options 1,

digital clock (2).uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,2, 0x0

digital clock (1).uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,2, 0x0

clock.lnp

"STARTUP.obj", "MAIN.obj" TO "clock" RAMSIZE(256)

clock.v

module clock (clk); parameter cyc=5; //??????? output clk; reg clk; initial clk=0; always #cyc clk=~clk; endmodule