代码搜索结果
找到约 10,000 项符合
Switch 的代码
switch.h
#define NU_SEM_EN 1
#define NU_QUEUE_EN 1
#define NU_MAILBOX_EN 1
#define NU_PIPE_EN 1
#define NU_EVENT_GROUP_EN 1
#define NU
switch.dni
[DisAssemblyWindow]
NumStates=_ 1
State 1=_ 1
[Interrupts]
Enabled=1
[MemoryMap]
Enabled=0
TypeVolition=1
UnspecRange=1
ActionState=1
[Log file]
LoggingEnabled=_ 0
LogFile=_ ""
Category=_
switch.dbgdt
84
switch.ewd
1
Debug
8051
switch.ewp
1
Debug
8051
switch.dep
1
Debug
$PROJ_DIR$\Debug\Exe\switch.d51
switch.csp
package switch_test;
function main() {
var i = -1,a;
var j;
for(j = 0;j < 10000;j++)
{
switch(j % 4)
{
case 0: a = "zero"; break;
case 1: a = "one"; break;
c
switch.cpp
// switch.cpp -- use the switch statement
#include
using namespace std;
void showmenu(); // function prototypes
void report();
void comfort();
int main()
{
showmenu();
in