搜索结果
找到约 12 项符合
BUF 的查询结果
按分类筛选
汇编语言 数据加密程序 p macro buf lea dx,buf mov ah,9 int 21h endm data segment pp db 0dh,0ah, welcome you t
数据加密程序
p macro buf
lea dx,buf
mov ah,9
int 21h
endm
data segment
pp db 0dh,0ah, welcome you to run this programme!$
qq db 0dh,0ah, when you input number,press enter.$
qw db 0dh,0ah, 6eh,52h,94h,52h,$
qa db 0dh,0ah, $
info1 db 0dh,0ah,0dh, input number:$
info2 db 0dh,0ah, output number:$
...
汇编语言 微机原理与接口技术实验二 转移程序设计 在BUF数据区中放有三个双字节数
微机原理与接口技术实验二
转移程序设计
在BUF数据区中放有三个双字节数,现要求将这三个数按从大到小次序重新存放。分别将这些数视为有符号数和无符号数这两种情况编写程序。上机调试程序,检查执行结果。
报告赋有图片,很完整,请放心下载. ...
单片机开发 This version of the code is compatible only with the AT89C2051 due to the location of the data buf
This version of the code is compatible only with the AT89C2051 due to the
location of the data buffer and stack in RAM. The code may be modified to
work with the AT89C1051 by relocating or resizing the buffer and stack to
fit into the smaller amount of RAM available in the AT89C1051.
加密解密 C++ Base64编码/解码源代码 inline int Base64Encode(char * base64code, const char * src, int src_len = 0)
C++ Base64编码/解码源代码
inline int Base64Encode(char * base64code, const char * src, int src_len = 0)
inline int Base64Decode(char * buf, const char * base64code, int src_len = 0) 以上两个函数内联定义在base64.h中,使用时include "base64.h" 即可,编码后的长度一般比原文多占1/3的存储空间,为了效率, ...
嵌入式/单片机编程 其中的usb端口通信已经作为一个模块来使用
其中的usb端口通信已经作为一个模块来使用,用户只需用以下函数就可以对usb端口进行方便的读写:
unsigned char D12_WriteEndpoint(unsigned char endp, unsigned char len, unsigned char * buf) 此为usb端点输出函数,endp是要进行通信的端点,取值为3(普通端点,最大可一次传输16byte)或5(主端点,最大可一次传输64b ...
嵌入式/单片机编程 FlashROM的存储控件操作源代码
FlashROM的存储控件操作源代码,用于在Ram中建立Flash映射Buf,减少直接操作Flash次数
Windows CE 使用的gif89a类以及其他相关文件
使用的gif89a类以及其他相关文件,并移植到WinCE平台上。
其中值得注意的主要是这个操作
code = *((DWORD*)(buf+bufIndex))
可以用乘法或者内存复制操作来代替
VHDL/FPGA/Verilog 倍频详解
倍频详解,IBUFG,BUF,希望大家喜欢
操作系统开发 一个完整的SHELL实现源代码
一个完整的SHELL实现源代码,内容包括:buf.c def.h dir.c file.c fs.c fs.h dh.c inode.c main.c os.exe panic.c 对学习操作系统有很大的帮助
压缩解压 源代码的思路参考自 Mark Nelson 所著的<<数据压缩技术原理与范例>> 中的第八章"滑动窗口压缩"
源代码的思路参考自 Mark Nelson 所著的<<数据压缩技术原理与范例>>
中的第八章"滑动窗口压缩",是lz77算法的一种简介直观的实现,但是由于
没有采用如LZSS算法中的二叉搜索树技术,所以在运行速度上不如LZSS算法。
采用了微量缓冲区buf 以加快执行速度。 ...