代码搜索:2000
找到约 10,000 项符合「2000」的源代码
代码结果 10,000
www.eeworm.com/read/463212/7186278
c main.c
#include
#include
#define uchar unsigned char
#define uint unsigned int
sbit Test=P3^7;
void main()
{ uchar ok=0,i=0;
Test=0;
DelayMs(6000);
Test=1;
DelayMs
www.eeworm.com/read/462503/7200872
cmd fir.cmd
MEMORY
{
PAGE 0:
ROM: org=0x2000, len=0x0f00
VEC: org=0xff80, len=0x0080
PAGE 1:
SPRAM: org=0x0060, len=0x0020
DARAM: org=0x0100, len=0x2000
}
SECTIONS
{
.text :> ROM PAGE 0
www.eeworm.com/read/433885/7218325
txt readme.txt
黑色街角黑客技术大宝库 龙牙制作 www.22kk.com
1如何成为一位 hacker 13黑客技术 25浏览器攻击
2如何破解系统(1) 14黑客惯用手法揭秘 26NT的密码究竟放在哪
3如何破解系统(2) 15攻击的各种级别 27用FIP获取shadow口令文件
4如何破解系统(3) 16经典黑客远程攻击 28引诱、欺骗并研究一个黑客
5如何破解系统(4) 17代理服 ...
www.eeworm.com/read/461776/7220685
cpp lexer.cpp
//
// Script converter
//
// Copyright (c) 2000-2002 Chihiro.SAKAMOTO (HyperWorks)
//
//
// 脚本词法解释器
www.eeworm.com/read/461264/7230627
pro get_equinox.pro
FUNCTION GET_EQUINOX,HDR,CODE
;+
; NAME:
; GET_EQUINOX
; PURPOSE:
; Return the equinox value from a FITS header.
; EXPLANATION:
; Checks for 4
www.eeworm.com/read/461210/7231712
m ispowerof2.m
% % check if given number 'n'is power of 2.
% % return 1 if given number 'n'is power of 2, otherwise return 0
function flag=ispowerof2(n)
flag=0;
table=[1,2,4,8,16,32,64,128,256,512,1024,204
www.eeworm.com/read/461210/7231716
m padrgbtomakepowof2.m
% % if required then add padvalue (defualt 0)
% % to make size of rgbimg power of 2.
% % e.g. if initiall size of rgbimg is 7x5x3
% % the after padding, size of rgbimg would be
% % 8x8x3
functio