python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
What are the common ways instruction decoders deal with using constants over registers in microcontrollers?
Specifically, if the assembly instruction has a constant as one of the operands, how would instruction decoder pass it to the ALU? So far I thought of three ways to do it.
Pass the constant into a fr...

Nikolai Savulkin
Votes: 0
Answers: 1
ARMv7 T3 encoding for adds
I can't tell how to determine the following:
i, 10th bit on the left.
imm3, what's the difference for this one with imm8?
Mzq
Votes: 0
Answers: 1
Replace `movss xmm0, cs:dword_5B27420` with `movss xmm0, immediate`
I have a linux .so file in Ida Pro and I have the following instruction:
movss xmm0, cs:dword_5B27420
Is it possible to move a fixed value into xmm0 using the same or less number of bytes than that...
Alvaro Hernandorena
Votes: 0
Answers: 1
MIPS - SPIM parser immediate value out of range for bitwise ANDI
Was trying to test my program with SPIM and have this message
spim: (parser) immediate value (-16) out of range (0 .. 65535) on line 56 of file code1.a
andi $t1, $t0, 0xfffffff0
what could be the p...
avatar
Votes: 0
Answers: 1