搜索结果
找到约 908 项符合
Max-Int 的查询结果
技术书籍 c语言深度剖析
第一章关键字...................................................................................................................................9
1.1,最宽恒大量的关键字----auto..........................................................................................11
1.2,最快的关键字---- register. ...
汇编编程 判断奇数或偶数
判断奇偶数的汇编程序CODE     SEGMENT
         ASSUME   CS: CODE
START:   MOV      AH,  01H         ; 调用 DOS中断的1号子功能(键入一个字符),
  ...
Linux/uClinux/Unix编程 ELF文件查看
elf  文件格式分析
各种讲解 elf 文件格式一上来就是各种数据类型,看了半天却不知道这些数据类型是干啥的,所以咱就先找个例子直接上手,这样
对 elf 文件格式有个具体而生动的了解。
然后再去看那些手册,就完全不惧了~。
我们使用一个汇编程序 max.s 并对其进行编译链接产生的两个 elf 文件来对比分析 elf 文件。 ...
其他文档 多线程游戏
/**
 * 用于在逻辑和界面间传输数据的bean
 * @version 1.0
 */
public class DataBean {
    private int first = -1;
    private int second = -1;
    public int getFirst() {
        return first;
    }
    public int ...
接口技术 net_tcp.h
/*
*********************************************************************************************************
*                                             uC/TCP-IP V2
*       ...
接口技术 max5 MAX V Device Handbook
关于CPLD的资料关于CPLD的资料关于CPLD的资料关于CPLD的资料关于CPLD的资料关于CPLD的资料关于CPLD的资料关于CPLD的资料
PCB图/BOM单/原理图 单片机课程设计
#include<reg52.h>&nbsp;
#include<intrins.h>
#define LED P0
sbit KEY0=P2^0; &nbsp;//定义按键输入端口 A &nbsp;&nbsp;
sbit KEY1=P2^1; &nbsp;//定义按键输入端口 B &nbsp;&nbsp;
sbit KEY2=P2^2; &nbsp;//定义按键输入端口 C
unsigned int Led_table[8]={0xfe,0xfc,0xf8,0xf0,0xe0,0xc0,0x80,0x00};
char Led_num=0 ...
C/C++语言编程 C语言用户注册及登录
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
main(void)
{ &nbsp; char new_name[4], name[4];
&nbsp; &nbsp; int new_sn ,sn;
&nbsp; &nbsp; printf(" &nbsp; &nbsp; &nbsp; &nbsp;【注册】\n\n");
&nbsp; &nbsp; printf("请输入用户名(四位英文字母):");
&nbsp; &nbsp; scanf("%s", ...
单片机编程 用定时器以间隔500MS在6位数码管上依次显示0、1、 2、3….C、D、E、F,重复。
#include<reg51.h>
#define uchar unsigned char
#define uint unsigned int
uint i,j;
sbit dula=P2^6;
sbit wela=P2^7;
uchar code table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,
0x7d,0x07,0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71};
void main()
{&nbsp;
j=0;
i=0;
&nbsp; &nbsp; TMOD=0X01;
TH0=(65536-50000)/256;
TL ...