代码搜索结果
找到约 10,000 项符合
Switch 的代码
switch.asm
.def GISR2,PHANTOM
.def GISR3,T1PINT_ISR
.def GISR5,CANMBX_ISR
.ref _timer2_isr,_timer1_isr
.ref I$$SAVE,I$$REST
.ref PVECTORS
;***INT 2****
GISR2:
switch.cpp
// switch box routing
#include
#include "stack.h"
bool CheckBox(int net[], int n)
{// Determine whether the switch box is routable.
Stack *s = new Stack (n);
/
switch.out
Type number of pins in switch box
Type net numbers for pins 1 through 8
Switch box is routable
switch.dat
8
1 2 2 1 3 3 4 4
switch.jhd
MODULE switch
switch.vhd
-- 库声明
library IEEE;
use IEEE.STD_LOGIC_1164.all;
-- 实体声明
entity switch is
port (
din1 : in STD_LOGIC;
din2 : in STD_LOGIC;
sel : in STD_LOGIC;
dout : out STD_LO
switch.lst
C51 COMPILER V7.50 SWITCH 03/28/2007 11:36:59 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE SWITCH
OBJECT MODULE PLACED IN
switch.c
#include
#include
#include "Define.h"
#include "Set.h"
#include "Common.h"
//////////////////////////////////////////////////////////////////////////
extern _ucdKBScanRe
switch.h
////////////////Functions////////
void Switch();