代码搜索:SWITCH
找到约 10,000 项符合「SWITCH」的源代码
代码结果 10,000
www.eeworm.com/read/387417/8685166
vhd switch_bus.vhd
-- 库声明
library IEEE;
use IEEE.STD_LOGIC_1164.all;
-- 实体声明
entity switch_bus is
-- 类属参数
generic (
BUS_WIDTH : integer := 8 ); -- 总线宽度
port (
din1 : in std_logic_vector(BUS_WIDTH-1 d
www.eeworm.com/read/287166/8714552
c p_switch.c
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: p_switch.c,v 1.10 2001/04/18 21:00:22 metzgermeister Exp $
//
// Co
www.eeworm.com/read/386806/8724778
c sound_switch.c
/*
* sound/sound_switch.c
*
* The system call switch
*
* Copyright by Hannu Savolainen 1993
*
* Redistribution and use in source and binary forms, with or without
* modification, ar
www.eeworm.com/read/385844/8786202
s switch-old.s
/* switch.s
* Machine dependent context switch routines. DO NOT MODIFY THESE!
*
* Context switching is inherently machine dependent, since
* the registers to be saved, how to set up an initi
www.eeworm.com/read/385055/8822430
bat switch.cspy.bat
@REM This bat file has been generated by the IAR Embeddded Workbench
@REM C-SPY interactive debugger,as an aid to preparing a command
@REM line for running the cspybat command line utility with the
www.eeworm.com/read/285107/8868152
java switch2.java
public class Switch2{
public static void main(String[] args){
int a=1, b=2, c;
switch(a+b){
case 1: c=1;
break;
case 3: c=3;
break;
www.eeworm.com/read/285107/8868175
java switch3.java
public class Switch3{
public static void main(String[] args){
int a=1;
switch(a){
case 1: System.out.println("111");
case 2: System.out.println("222");