搜索结果
找到约 82 项符合
front-Ends 的查询结果
VHDL/FPGA/Verilog 这个设计是使用Virtex-4实现DDR的控制器的
这个设计是使用Virtex-4实现DDR的控制器的,设计分为三个主要模块:Front-End FIFOs,DDR SDRAM Controller和Datapath Module。其中主要是DDR SDRAM Controller,当然还有测试模块。
其他行业 Emdros is a text database middleware-layer aimed at storage and retrieval of "text plus information
Emdros is a text database middleware-layer aimed at storage and
retrieval of "text plus information about that text." This
information could be linguistic analyses or other annotations. Emdros
provides an abstraction of text that makes it well suited to storing
/syntactic analyses/ of text, but ot ...
单片机开发 Wireless range extenders or wireless repeaters can extend the range of an existing wireless network.
Wireless range extenders or wireless repeaters can extend the range of an existing wireless network. Range extenders can be strategically placed to elongate a signal area or allow for the signal area to reach around barriers such as those created in L-shaped corridors. Wireless devices connected thr ...
其他 AVR single-chip developed by a very low threshold, as long as the computer will be able to study the
AVR single-chip developed by a very low threshold, as long as the computer will be able to study the development of AVR microcontroller. Only a single-chip ISP download beginners line, the editing, debugging of software programs through a direct line into the AVR microcontroller, which can develop A ...
单片机开发 AVR single-chip developed by a very low threshold, as long as the computer will be able to study the
AVR single-chip developed by a very low threshold, as long as the computer will be able to study the development of AVR microcontroller. Only a single-chip ISP download beginners line, the editing, debugging of software programs through a direct line into the AVR microcontroller, which can develop A ...
汇编编程 16进制转十进制
DATAS SEGMENT
w dw 0
keybuf db 255
     db 0
     db 255 dup(0)      ;定义键盘输入需要的缓冲区
DATAS ENDS
STACKS SEGMENT
db 200 dup(?)
STACKS ENDS
CODES SEGMENT
ASSUME CS:CODES,DS:DATAS,SS:STACKS
START:
MOV AX,DATAS
MOV DS,AX
mov dx,offset keybuf   ...
多媒体处理 5.1功放全套方案PT2258
UNTER EQU 35H;显示计数
REMVOL  EQU  36H;音量连续控制
DISPBUFF1 EQU 37H;
DISPBUFF2 EQU 38H;
DISPBUFF3 EQU 39H;
DISPBUFF EQU 3AH;
SDA BIT P3.4
SCL BIT P3.2
MTD EQU 30H;PT2258数据首址
NUMBYT EQU 3BH;PT2258数据位数
CS_X1 EQU 3CH;遥控
CS0_X1 EQU 3DH
U0_X1 EQU 3EH;遥控数据暂存区
NO_M EQU 40H;数 ...
汇编编程 判断奇数或偶数
判断奇偶数的汇编程序CODE     SEGMENT
         ASSUME   CS: CODE
START:   MOV      AH,  01H         ; 调用 DOS中断的1号子功能(键入一个字符),
  ...
图形图像 ggggif
gif捕捉制作工具:
Demo ends:1034044285
名字:kukuasir
注册码:这里输入新注册码
录制区域:0,0 1024x738
帧的延时:500
帧间透明:是
记录时间信息:是
循环:是
屏幕仿真:是
覆盖边缘:是
覆盖指针:是
Explorer 2.0 兼容:否
录制尺寸:100
源码 数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
int top;
}SqStack;// ...