Welcome![Sign In][Sign Up]
Location:
Search - MOV

Search list

[Windows Develophuibian

Description: ReadCard 读出从StartAdr开始的ByteNum字节,结果存放于ReadBuf中, 读出正确,ACC中返回#0, 返回#01表示无效卡或者卡损坏。-WriteCard: LCALL Anrst JNZ WriteExit MOV R0,#WriteBuf MOV R2,ByteNum
Platform: | Size: 5057536 | Author: yueliren | Hits:

[Windows DevelopMxfPlayer1

Description: MXF和MOV文件播放控件 MXF和MOV文件播放控件-MXF and MOV files playback controls MXF and MOV files playback controls
Platform: | Size: 51200 | Author: zhangcl | Hits:

[Multimedia DevelopKeyGen

Description: AVI ASF WMV MPEG MOV MP4 FLV Converter 6.5
Platform: | Size: 210944 | Author: Mohammad | Hits:

[Windows Developshuangshukong

Description: SDA EQU P1.7 数据线 SCL EQU P1.6 时钟线 ZJKZ EQU 31H 发送、接收数据位数计数器 DATAK EQU 32H X9221A的参数 INSTE EQU 33H X9221A的指令 (I3I2I1I0 0 P0 R1 R0) 例如R0增大或减小用 MOV INSTE,#0C0H 向第0个电位器的R0寄存器写指令 MOV DATAK,#63 (0 0 D5 D4 D3 D2 D1 D0) LCALL XWCR(或XSJCQ) CONSJ EQU 34H 电阻增大、减小控制参数(R1-24H R0-20H) 写增加/减少指令(0010 0 1/0 N/A N/A) 例如R0增大或减小用 MOV CONSJ,#20H LCALL ZJWCR(或JXWCR)-SDA EQU P1.7 SCL EQU P1.6 ZJKZ EQU 31H
Platform: | Size: 2048 | Author: sun | Hits:

[Multimedia DevelopencodeServer

Description: 编码服务器,支持XML任务书,支持MOV,WAV等格式文件转换为3GP,MP4和3G2文件-Encoding server, XML-the mission statement to support MOV, WAV and other formats files to 3GP, MP4, and 3G2 file
Platform: | Size: 12375040 | Author: huang hua | Hits:

[assembly language1

Description: 基本的8086组成原理并提供数据测验,实现了比如mov,add等基本汇编命令的运行。-The composition of the basic principles of 8086 and to provide test data to realize such mov, add the basic compilation command operation.
Platform: | Size: 3168256 | Author: ming | Hits:

[ARM-PowerPC-ColdFire-MIPSjizu

Description: 计算机组成原理课程设计及报告 微处理器硬布线 9条基本指令+MOV+SHL-Principles of Computer Organization course design and reporting of the microprocessor hard-wired nine basic instructions+ MOV+ SHL
Platform: | Size: 84992 | Author: liang | Hits:

[SCMjpxs

Description: 取键值程序 功能:等待键入,并刷新显示,并返回键值放 A 占用: PSW,A,DPTR,R0,R2,R3,R4,R6,R7 入口:无 出口: A ORG 0190H WAT_KB: MOV R0,#3FH WAT_0: ACALL DISP_0 刷新显示器 ACALL T_KB JZ WAT_0 无键 , 循环 ACALL KEY_LD 延时消抖-#include<reg51.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit SDA=P1^0 sbit CLK=P1^1 sbit P1_2=P1^2 uchar checkKey[8] ={1,2,4,8,16,32,64,128} code uchar Table[10]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f} void delay() { uint i for(i=0 i<=500 i++) } void send(uchar a) { uchar i for(i=0 i<8 i++) { if(_crol_(a,i)&0x80) SDA=1 else SDA=0 CLK=0 CLK=1 } } void xianshi(uchar a) { uchar coun uchar com=0xbf coun=a 10 P1=0xff send(~Table[coun]) P1=com delay() P1=0xff } int main(void) { uint i uchar keyValue while(1) { send(0x00) if(P1_2 == 0) { for(i = 0 i <8 i++) { send(~checkKey[i]) if(P1_2 == 0) { keyValue = i xianshi(keyValue) break } } } } }
Platform: | Size: 1024 | Author: lgp | Hits:

[OtherS51E(AVR)

Description: 多字节BCD码加法 入口条件:字节数在R7中,被加数在[R0]中,加数在[R1]中。 出口信息:和在[R0]中,最高位进位在CY中。 影响资源:PSW、A、R2 堆栈需求: 2字节 BCDA: MOV A,R7 ;取字节数至R2中 MOV R2,A ADD A,R0 ;初始化数据指针 MOV R0,A MOV A,R2 ADD A,R1 MOV R1,A CLR C BCD1: DEC R0 ;调整数据指针 DEC R1 MOV A,@R0 ADDC A,@R1 ;按字节相加 DA A ;十进制调整 MOV @R0,A ;和存回[R0]中 DJNZ R2,BCD1 ;处理完所有字节 RET   - 多字节BCD码加法 入口条件:字节数在R7中,被加数在[R0]中,加数在[R1]中。 出口信息:和在[R0]中,最高位进位在CY中。 影响资源:PSW、A、R2 堆栈需求: 2字节 BCDA: MOV A,R7 ;取字节数至R2中 MOV R2,A ADD A,R0 ;初始化数据指针 MOV R0,A MOV A,R2 ADD A,R1 MOV R1,A CLR C BCD1: DEC R0 ;调整数据指针 DEC R1 MOV A,@R0 ADDC A,@R1 ;按字节相加 DA A ;十进制调整 MOV @R0,A ;和存回[R0]中 DJNZ R2,BCD1 ;处理完所有字节 RET  
Platform: | Size: 32768 | Author: lhp | Hits:

[MacOS developFilmRedux

Description: the easy way to convert vob to mov
Platform: | Size: 11838464 | Author: dave | Hits:

[matlablabtray

Description: describe the mov of a robot and include the grafic of thaht way
Platform: | Size: 6144 | Author: andresg231 | Hits:

[GIS programninglei

Description: ;取当前显示方式 INT 10H PUSH AX ;保存当前显示方式(AL) MOV AH, 0 ;设置彩色80×25文本方式 MOV AL, 3 INT 10H MOV CX, 1 ;一次显示一个笑脸字符及属性 MOV DH, 12H ;12行,从屏幕左边的中间开始 MOV DL, 0 ;0列 BEGIN: CMP DL, 79 ;移到79列就退出 JAE EXIT CMP DH, 0 ;移到第0行就退出- Take the current display mode INT 10H PUSH AX to save the current display (AL) MOV AH, 0 set color 80 × 25 text mode MOV AL, 3 INT 10H MOV CX, 1 time shows a smiley face character and properties MOV DH, 12H 12 lines, from the middle of the screen on the left began to MOV DL, 0 0 Lie BEGIN: CMP DL, 79 move to 79 on the exit JAE EXIT CMP DH, 0 move to the first line of the exit 0
Platform: | Size: 1024 | Author: 孙炜棋 | Hits:

[Compress-Decompress algrithmsstack

Description: stack segment stack dw 500 dup(?) p dw ? stack ends code segment assume cs:code, ss:stack begin: mov ax,stack-stack segment stack dw 500 dup (?) p dw? stack ends code segment assume cs: code, ss: stack begin: mov ax, stack
Platform: | Size: 2048 | Author: khumbui | Hits:

[Special Effectsyuvmov

Description: yuv与mov格式转换的matlab实现-yuv and mov format conversion matlab implementation
Platform: | Size: 2048 | Author: xyh | Hits:

[Multimedia DevelopCQTMovieFile

Description: 创建MOV文件的整个过程!将图片一张张整合成为MOV文件。-MOV file to create the entire process! The picture one by one unite to become a MOV file.
Platform: | Size: 59392 | Author: lwb | Hits:

[VHDL-FPGA-VerilogVHDL

Description: 支持十条指令的微处理器 包括add sub mov mvi jmp jz in out sti lda微指令 支持8个寄存器 16位数据总线 地址总线 -Supports 10 microprocessor instructions, including add sub mov mvi jmp jz in out sti lda microinstruction registers support 8 data bus 16-bit address bus
Platform: | Size: 1074176 | Author: 张梦 | Hits:

[Windows Develop1

Description: 该播放器实现了对WAV、MID、MP3、MOV等格式的多媒体文件的播放功能;实现了播放列表加载多个多媒体文件并可以自定义播放顺序;实现了用户的身份认证、连续播放、记忆播放以及自动关闭播放器等功能。-The player realizes WAV, MID, MP3, MOV, etc. format playback of multimedia files achieve load multiple playlists of multimedia files and can customize playback order achieve user authentication, continuous playback, memory Play and automatically close the player and other functions.
Platform: | Size: 11264 | Author: 玲玲 | Hits:

[OS programSkinload

Description: 皮肤加载器 BUG:退出软件会提示一下错误,是ShelllCode的副作用啦 用OD载入那个软件,把下面这三句话 引用: 00403B9D /74 0B je short 00403BAA 00403B9F |891D 7C704000 mov dword ptr [40707C], ebx 00403BA5 |E8 16000000 call 00403BC0 修改为 引用: 00403B9D B8 E2434000 mov eax, 004043E2 00403BA2 A3 D4804000 mov dword ptr [4080D4], eax 00403BA7 90 nop 00403BA8 90 nop 00403BA9 90 nop-Skin loader BUG: exit software tips about the error, is the side effects ShelllCode OD loading the software with friends, to quote the following three words: 00403B9D/74 0B je short 00403BAA 00403B9F | 891D 7C704000 mov dword ptr [40707C] , ebx 00403BA5 | E8 16000000 call 00403BC0 revised to reference: 00403B9D B8 E2434000 mov eax, 004043E2 00403BA2 A3 D4804000 mov dword ptr [4080D4], eax 00403BA7 90 nop 00403BA8 90 nop 00403BA9 90 nop
Platform: | Size: 3637248 | Author: 黄国松 | Hits:

[JSP/JavajavaCourseDesignOfVideoPlayeranReport

Description: java编写的视频播放器 源码和报告完整版,支持mpg格式,mov格式的视频。-Java video player written source and report the full version, support, mov format MPG then larger engines format video.
Platform: | Size: 195584 | Author: 飞雪 | Hits:

[Embeded-SCM Develop1

Description: 单片机音乐盒 单片机音乐盒程序有3个音乐的 ORG 0000H LJMP START ORG 000BH INC 20H 中断服务,中断计数器加1 MOV TH0,#0D8H MOV TL0,#0EFH 12M晶振,形成10毫秒中断 RETI START: MOV SP,#50H MOV TH0,#0D8H MOV TL0,#0EFH MOV TMOD,#01H MOV IE,#82H MUSIC0: NOP MOV DPTR,#DAT 表 -Music Box Music Box SCM SCM procedures have three music ORG 0000H LJMP START ORG 000BH INC 20H interrupt, the interrupt counter plus 1 MOV TH0,# 0D8H MOV TL0,# 0EFH 12M crystal, the formation of 10 ms interrupt RETI START : MOV SP,# 50H MOV TH0,# 0D8H MOV TL0,# 0EFH MOV TMOD,# 01H MOV IE,# 82H MUSIC0: NOP MOV DPTR,# DAT table
Platform: | Size: 12288 | Author: JONE | Hits:
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 15 16 »

CodeBus www.codebus.net