Top "Mov" questions

Questions related to the assembler `mov` instruction

Assembly Word ptr meaning

.data num dd 090F0433H .code mov ax, @data mov ds, ax mov ax, word ptr num mov bx, word …

pointers assembly word mov
Which are the FLV supported audio types?

I'm having issues with playing back some quick time files using actionscript 3.0 (NetStream class). I have no control on how …

audio flv flash quicktime mov
difference between conditional instructions (cmov) and jump instructions

I'm confused where to use cmov instructions and where to use jump instructions in assembly? From performance point of view: …

performance assembly instructions mov
mov instructions with byte destination for immediate to memory

I am reading a textbook entitled Introduction to 80x86 Assembly Language and Computer Architecture by Richard C. Detmer I have …

assembly x86 opcode mov addressing-mode
Converting EXR image sequence to .MOV

I'm looking for a encoder that creates a Quicktime Movie (PhotoJpeg) from OpenEXR image sequences. Any help would be really …

image-processing quicktime mov openexr
Error "Transparency encoding with auto_alt_ref does not work" when converting a .mov with Alpha to .webm with alpha with ffmpeg

I am trying to convert a .mov file with alpha transparency into a .webm file and have been following this …

video ffmpeg alpha webm mov
8086 assembly: MOV part of a string into a variable

Assuming I have a string of ascii characters such as "652+346*779=", and I want to move some characters FROM this variable …

assembly x86 mov addressing
How can I convert a movie into .MP4 from .MOV using a PHP upload script?

I am trying to upload a movie onto a site and then automatically convert it into .mp4 format from the .…

php file-upload mp4 mov video-conversion
When should one use MOVS opposed to MOV in x86 Assembly?

I've come across both of these instructions in the The Intel 64 and 32 Bit Architectures Software Developer Manual, and am simply …

assembly optimization x86 mov
Difference between memory and register

I saw assembly code like, MOV [EAX], EBX the above line, They are mentioned [EAX] is memory and EBX is …

memory assembly cpu-registers instructions mov