代码搜索结果
找到约 143,016 项符合
Remote Control 的代码
remote.m51
BL51 BANKED LINKER/LOCATER V5.11 06/23/2007 10:58:55 PAGE 1
BL51 BANKED LINKER/LOCATER V5.11, INVOKED BY:
C:\KEIL\C51\BIN\BL51.EXE remote
control.m
function y=control(n)
a=20;
if n==0
y=a+1;
elseif n==1
y=a*(1+n);
elseif n==2
y=a+n;
else
y=a;
end
control.vhd
-- ============================================================
-- File Name: control.vhd
-- ============================================================
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.AL
control.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
USE IEEE.STD_LOGIC_ARITH.ALL;
ENTITY control IS
PORT( reset: IN STD_LOGIC; --system reset signal
bege
control-structures.alternative-syntax.html
Alternative syntax for control structures
language.control-structures.html
Control Structures
control.h
//
// C++ Interface: Control
//
// Description:与iptux相关的程序数据
//
//
// Author: Jally , (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef CONTROL
control.cpp
//
// C++ Implementation: Control
//
// Description:
//
//
// Author: Jally , (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "Control.h"
#i
control.lst
C:\tic2xx\c2000\cgtools\bin\dspa.exe control.asm control.obj -ls -v2xx
TMS320C1x/C2x/C2xx/C5x COFF Assembler Version 7.00 Thu Sep 9 16:54:59 2004
Copyright (c) 1987-1999 Texas Instruments Inco
control.asm
.title "control.asm"
.ref _c_int0,_nothing
.sect ".control"
reset: b _c_int0
int1: b _nothing
int2: b _nothing
int3: b _nothing