搜索结果
找到约 908 项符合
Max-Int 的查询结果
汇编语言 编写一个程序
编写一个程序,输出基本数据类型char, short, int, long, float, double和指针类型void *, char *, short *, int *, long *, float *, double *的数据类型的长度。
操作系统开发 A badic controller for the UART. It incorporates a -- transmit and receive FIFO (fr
A badic controller for the UART. It incorporates a
-- transmit and receive FIFO (from Max+Plus II s MegaWizard
-- plug-in manager). Note that no checking is done to see
-- whether the FIFOs are overflowing or not. This strictly
-- handle ...
VHDL/FPGA/Verilog 一个用VHDL编写的秒表程序
一个用VHDL编写的秒表程序,可用Max+PlusII仿真
压缩解压 Per gli interessati ai metodi della compressione una vera miniera d oro, oltre 70 algoritmi all int
Per gli interessati ai metodi della compressione una vera miniera
d oro, oltre 70 algoritmi all interno di moduli base indipendenti
consentono a questo programma di mostrare il loro utilizzo e le
loro performances, ecco elencati alcuni di essi :
base64/crc32/fibonacci/mtf/freq/adddif/bwt/fix12/fix ...
单片机开发 内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明.
内容摘要: LHD6000主板主芯片程序 ISD1730时序说明:
参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明.
应先发"RESET"命令再发"PWR_UP"命令,后发"RESET"命令可能不正常工作.
1730最高地址只有0xFF,所以对指定地址的操作函数的参数使用了"unsigned char"类型,
17系列的其它型号可能才用得到"unsigne ...
VHDL/FPGA/Verilog 内容摘要:在简单介绍算术编码和自适应算术编码的基础上
内容摘要:在简单介绍算术编码和自适应算术编码的基础上,介绍了利用FPGA器件并通过VHDL语言描述实现自适应算术编码的过程。整个编码系统在LTERA公司的MAX+plus Ⅱ软件上进行了编译仿真,测试结果表明:编码器各个模块的设计在速度和资源利用两方面均达到了较优的状态,可以满足实时编码的要求。 ...
汇编编程 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   ...
C/C++语言编程 toj 4022源代码
#include <iostream>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
long long n;
cin>>n;
if(n%2==1)
cout<<(n*n-1)/4<<endl;
else if (n%4==0)
cout <<(n*n)/4-1<<endl;
else{
if(n==2)
cout<<1<<endl;
else{
long long k=n/2-1;
cout <<k*k+2*k-3<<endl;
}
...
Linux/uClinux/Unix编程 两个链表的交集
两个链表的交集
#include<stdio.h>
#include<stdlib.h>
typedef struct Node{
&nbsp; int data;
&nbsp; struct &nbsp;Node *next;
}Node;
void initpointer(struct Node *p){
&nbsp; p=NULL;
}
int &nbsp;printlist(struct Node* head){
&nbsp; int flag=1;
&nbsp; head=head->next;
&nbsp; /*
&nbsp; 因为标记1的地 ...