代码搜索结果
找到约 10,000 项符合
Control System 的代码
control.java
package com.javapatterns.command.television;
public class Control
{
/**
* @directed
*/
private Command onCommand, offCommand, changeChannel;
public Control(Command o
control.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use work.mydefine.all;
entity control is
port(c_en:in std_logic;
input:in std_logic_vector(7 downto 0);
clk:in std_
control.v
module control(std_f_sel,reset,clk,clear,cntover,cntlow);
output[1:0] std_f_sel;
output reset;
input clk,clear,cntover,cntlow;
reg[1:0] std_f_sel;
reg reset;
reg[5:0] present,next;
parameter st
control.v
`include "params.v"
/*-----------------------------------*/
// Module : CONTROL
// File : control.v
// Description : Description of Control Unit in Viterbi Decoder
// Simulator : Modelsim
control.h
#pragma warning( disable: 4049 ) /* more than 64k source lines */
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 6.00
control.c
#include "def.h"
#include "44b.h"
#include "option.h"
#include "utils.h"
void ShowBootInfo(void)
{
puts("\n **************************************\n");
puts("*
control.java
package javazoom.jl.decoder;
/**
* Work in progress.
*/
public interface Control
{
/**
* Starts playback of the media presented by this control.
*/
public void start();
/*
control.h
#ifndef __CONTROL_H__
#define __CONTROL_H__
#include "..\ucos-ii\includes.h" /* uC/OS interface */
#include "..\inc\drv\figure.h"
#include "..\inc\drv\display.h"
#include "..\ucos