代码搜索:熔丝位
找到约 10,000 项符合「熔丝位」的源代码
代码结果 10,000
www.eeworm.com/read/395890/2432440
m my_sga_haimingcrossover.m
function [newpop]=my_sga_haimingcrossover(popsize,chromlength,pop,pc,i); %交叉
%函数说明
%入口参数:pop 当前处理的种群,
% popsize 种群大小,
% chromlength 基因位长度,
% pc
www.eeworm.com/read/395890/2432508
m my_sga_haimingcrossover.m
function [newpop]=my_sga_haimingcrossover(popsize,chromlength,pop,pc,i); %交叉
%函数说明
%入口参数:pop 当前处理的种群,
% popsize 种群大小,
% chromlength 基因位长度,
% pc
www.eeworm.com/read/395890/2432575
m my_sga_haimingcrossover.m
function [newpop]=my_sga_haimingcrossover(popsize,chromlength,pop,pc,i); %交叉
%函数说明
%入口参数:pop 当前处理的种群,
% popsize 种群大小,
% chromlength 基因位长度,
% pc
www.eeworm.com/read/394626/2455390
asm port1 (2).asm
KEYLEFT BIT P1.0
KEYRIGHT BIT P1.1
LEDLEFT BIT P1.2
LEDRIGHT BIT P1.3 ;位定义
ORG 00H
SETB KEYLEFT
SETB KE
www.eeworm.com/read/378825/2680958
asm port1 (2).asm
KEYLEFT BIT P1.0
KEYRIGHT BIT P1.1
LEDLEFT BIT P1.2
LEDRIGHT BIT P1.3 ;位定义
ORG 00H
SETB KEYLEFT
SETB KE
www.eeworm.com/read/174065/6783408
c ch12_1.c
/*CH12_1*/
/*按位与运算*/
#include
main()
{
int a=9,b=5,c;
c=a&b;
printf("a=%d\nb=%d\nc=%d\n",a,b,c);
}
www.eeworm.com/read/294698/8210849
h bmp.h
#ifndef _PYOS_BMP_H_
#define _PYOS_BMP_H_
/******************************************************
* bmp 格式处理文件 *
* 现只支持 16位色(5:6:5) 非压缩 Windows 标准 bmp 格式 *
**
www.eeworm.com/read/292613/8345497
txt copymemory.txt
将BMP,24位图读入内存中。看代码后就能理解了。
unsigned char *LoadBitmapFile(char *filename, BITMAPINFOHEADER *bitmapInfoHeader)
{
FILE *filePtr;
BITMAPFILEHEADER bitmapFileHeader;
unsigned char *bitmapI
www.eeworm.com/read/174062/9610040
c ch12_1.c
/*CH12_1*/
/*按位与运算*/
#include
main()
{
int a=9,b=5,c;
c=a&b;
printf("a=%d\nb=%d\nc=%d\n",a,b,c);
}
www.eeworm.com/read/269549/11094691
asm textmode.asm
; textmode.asm :
; 文本模式操作函数, 工作于32位保护模式下.
;
; Copyright(c) 2007, Alex P.Wonder
; phoenixwonder@gmail.com
;
[SECTION .text]
[BITS 32]
;====================================================