About 1,850,000 results
Open links in new tab
  1. x86 - MUL function in assembly - Stack Overflow

    I am trying to execute simple multiplication in Assembly. However, I do not see the registers change when the MUL function is called. mov bx, 5 mov cx, 10 mul cx

  2. x86 - problem in understanding mul & imul instructions of …

    The original (i)mul instructions are from 16-bit x86 which had come long before the 32-bit x86 instruction set appeared, so they couldn't store the result to the eax/edx since there was no E …

  3. Why are there two ways to multiply arbitrary signed numbers in …

    Oct 11, 2018 · But looking at the machine code it appears that mult is a valid R-type instruction (opcode 0) whereas mul has a nonzero opcode (0x1c) and so shouldn't be an R-type, even …

  4. MUL Instruction in x86 Assembly - Stack Overflow

    Apr 2, 2023 · The x86 mul instruction always multiplies the accumulator register (EAX, AX, or AL) by whichever operand you provide in the instruction: The dword-sized mul ecx will multiply …

  5. MUL instruction doesn't support an immediate value

    I've read a few tutorials and examples, but I cannot wrap my head around how the MUL instruction works. I've used ADD and SUB without problems. So apparently this instruction …

  6. How to make 2 different __mul__ methods - Stack Overflow

    Apr 1, 2020 · I built a matrices calculator and I want to make one mul method for multiplication by scalar And another one for multiplication by other matrix. I have an if- else block but I prefer it …

  7. Am I understanding PyTorch's add_ and mul_ correctly?

    Am I understanding PyTorch's add_ and mul_ correctly? Asked 5 years ago Modified 5 years ago Viewed 1k times

  8. How to add MUL key to table rows in Mysql? - Stack Overflow

    How to add MUL key to table rows in Mysql? Asked 6 years, 11 months ago Modified 2 years, 1 month ago Viewed 2k times

  9. cpu usage - Assembly 8086 - Implementing any multiplication and ...

    Jan 13, 2015 · I would like to know if there is a way to perform any multiplication or division without use of MUL or DIV instruction because they require a lot of CPU cycles. Can I exploit …

  10. c++ - HLSL mul () variables clarification - Stack Overflow

    Dec 7, 2013 · The parameters for HLSL's mul( x, y) indicated here: say that if x is a vector, it is treated as a row vector. if y is a vector, it is treated as a column vector. Does this then follow …

Refresh