x86 assembly and instruction - EAS

About 2,920,000,000 results
Compact View
  1. Each x86 assembly instruction is represented by a mnemonic which, often combined with one or more operands, translates to one or more bytes called an opcode; the NOP instruction translates to 0x90, for instance, and the HLT instruction translates to 0xF4. [3]
    en.wikipedia.org/wiki/X86_assembly_language
    en.wikipedia.org/wiki/X86_assembly_language
    Was this helpful?
  2. People also ask
    How do arithmetic instructions work in x86?
    The most basic x86 arithmetic instructions operate on two 32-bit registers. The first operand acts as a source, and the second operand acts as both a source and destination. For example: addl %ecx, %eax – in C notation, this means: eax = eax + ecx;, where eax and ecx have the type uint32_t. Many instructions fit this important schema – for example:
    www.nayuki.io/page/a-fundamental-introduction-to-x86-as…
    How difficult is it to write x86 assembly code in MASM?
    MASM uses the standard Intel syntax for writing x86 assembly code. The full x86 instruction set is large and complex (Intel's x86 instruction set manuals comprise over 2900 pages), and we do not cover it all in this guide. For example, there is a 16-bit subset of the x86 instruction set. Using the 16-bit programming model can be quite complex.
    www.cs.virginia.edu/~evans/cs216/guides/x86.html
    How big is the x86 instruction set?
    The full x86 instruction set is large and complex (Intel's x86 instruction set manuals comprise over 2900 pages), and we do not cover it all in this guide. For example, there is a 16-bit subset of the x86 instruction set.
    www.cs.virginia.edu/~evans/cs216/guides/x86.html
    What is x86 assembly language?
    x86 assembly language comes in two syntax flavors. Intel and AT&T. Intel syntax is predominantly used in the Windows family, while AT&T is commonly seen in the UNIX family. We will stick to intel syntax throughout our assembly language journey in this series of articles. However, let us dive into the details of these two syntaxes.
    resources.infosecinstitute.com/topic/introduction-to-x86-…
  3. https://learn.microsoft.com/.../x86-instructions

    WebInstructions not so marked are not critical. On the x86 processor, instructions are variable-sized, so disassembling backward is an exercise in pattern matching. To disassemble

  4. X86-assembly/Instructions/and - aldeid

    https://www.aldeid.com/wiki/X86-assembly/Instructions/and

    WebThe and instruction can also be used as a modulo, as shown below: .text:004014BD mov ecx, [ebp+counter_i] ; ecx= i .text:004014C0 and ecx, 80000003h ; ecx = i % 4.

  5. https://en.wikipedia.org/wiki/X86_instruction_listings

    WebThe x86 instruction set refers to the set of instructions that x86-compatible microprocessors support. The instructions are usually part of an executable program, …

  6. https://resources.infosecinstitute.com/topic/...

    WebTypes of syntax used to write x86 assembly. x86 assembly language comes in two syntax flavors. Intel and AT&T. Intel syntax is predominantly used in the Windows family, while …

  7. https://stackoverflow.com/questions/9025766

    WebModified 8 years, 10 months ago. Viewed 21k times. 1. In x86 64-bit, I have the following instruction: and $0xf, %eax. The contents of %eax before and after remains 4. How is …

  8. https://www.nayuki.io/page/a-fundamental...

    Web3. Basic arithmetic instructions. The most basic x86 arithmetic instructions operate on two 32-bit registers. The first operand acts as a source, and the second operand acts as both …

  9. https://www.cs.virginia.edu/~evans/cs216/guides/x86.html

    WebMASM uses the standard Intel syntax for writing x86 assembly code. The full x86 instruction set is large and complex (Intel's x86 instruction set manuals comprise over 2900 pages), …

  10. x86 and amd64 instruction reference - felixcloutier.com

    https://www.felixcloutier.com/x86

    WebSerialize Instruction Execution: SETSSBSY: Mark Shadow Stack Busy: SETcc: Set Byte on Condition: SFENCE: Store Fence: SGDT: Store Global Descriptor Table Register: …

  11. X86-assembly/Instructions/pop - aldeid

    https://www.aldeid.com/wiki/X86-assembly/Instructions/pop

    WebThe pop instruction is used to restore the top of the stack into a register; Syntax pop register Example push 0xdebf ; push a value to the stack pop eax ; eax is now 0xdebf ; …

  12. https://www.tutorialspoint.com/assembly...

    WebThe TEST Instruction. The TEST instruction works same as the AND operation, but unlike AND instruction, it does not change the first operand. So, if we need to check whether a …

  13. Some results have been removed


Results by Google, Bing, Duck, Youtube, HotaVN