代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/292214/8367070
asm lcdshow2.asm
;128*64液晶显示器演示程序
LCD EQU 80E4H
WRICODE EQU LCD+0 ;写命令
WRDATA EQU LCD+1 ;写数据
RDSTAT EQU LCD+2 ;读状态
RDDATA EQU LCD+3 ;读数据
LCD_X EQU 30H
LCD_Y EQU 31H
LCD_X1 EQU 32H
LCD_Y1 EQU 33H
www.eeworm.com/read/392021/8367071
h io.h
/* io.h -- declarations of Input/Output functions
see README, qhull.h and io.c
copyright (c) 1993-1995, The Geometry Center
*/
#ifndef qhDEFio
#define qhDEFio 1
/* --------------------------
www.eeworm.com/read/292214/8367072
asm led.asm
;======================扫“8”自检程序=================
ORG 0000H
MOV R0,#0fCH ;指向字形口
MOV A,#80H ;确定字形代码
MOVX @R0,A ;输出字形代码
MOV R1,#0fDH ;指向字位口
www.eeworm.com/read/192684/8367073
css css.css
body,table,td{font-size:12px;color:#21439E;font-family:Tahoma}
table{border-collapse:collapse;background:#F8F8F8;text-align:center}
td{border: 1px solid #D2D2D2;}
td.inner{border: 0px ;background:#
www.eeworm.com/read/392021/8367074
m qhull.m
function [vertices, edges, normals, offsets] = qhull(points,str)
% function [V E N O] = qhull(P,str): Convex hull finder based on qhull
% P is an nxm list of m n-dimensional points.
% V is the vertice
www.eeworm.com/read/292214/8367075
asm he20_1.asm
;====== 硬件实验二十 8031串行口实验(一)双机通信(发送) =======
;接收程序清单详见asm51\he20_2.asm
ORG 0832H
JG832: MOV SP,#60H
MOV 7EH,#08H
MOV 7DH,#00H
MOV 7CH,#03H
MOV 7BH,#02
www.eeworm.com/read/392021/8367077
m leftof.m
function y=leftof(p,a,b)
%function y=leftof(p,a,b)
%Return 1 if the point p is to the left of the line ab.
%For a n x 2 list of points p, return a vector of results.
%
% Author: Richard Schreier, Oreg