Questions tagged [instructions]

Questions about instructions of real CPUs, VMs or compiler IRs.

Questions about instructions of real CPUs such as ARM and x86, virtual machines such as Java, or compiler internal representations such as LLVM.

574 questions
-4
votes
1 answer

STAR PATTERN NOT PRINTING WELL

I want to print star pattern in this way: ****** ***** **** *** ** * but it is printing this way: ****** ****** ****** ****** ****** ****** Can someone help me? This is my code: main: daddiu $sp,$sp,-48 sd $31,40($sp) …
-4
votes
1 answer

How to build a android apps like This

Now i am facing a problem with my apps. I want to make a animated hand on my app that help user in this way how to use it. I give blew a picture sample. Please help. https://i.stack.imgur.com/IgAMU.png
-4
votes
1 answer

equivalent x86_64 instructions to ARMv7 ones

I'm trying to port some ASM instructions in a source code I have in C and ASM. Can anyone help me to find an instruction set and to understand the uses of the instructions of ARMv7? Actually I'm handling interrupts, so I want to…
user1189104
  • 79
  • 1
  • 6
-7
votes
1 answer

What is the difference between these instructions

What is the difference between these instructions: -Add (R0), R3 -Add R0, (R3) And why has the place of () been changed?
1 2 3
38
39