Top "Machine-code" questions

Machine code is data that is directly fed into a microprocessor, being the only form that the processor is able to execute.

Assembly code vs Machine code vs Object code?

What is the difference between object code, machine code and assembly code? Can you give a visual example of their …

assembly machine-code object-code
assembly to compare two numbers

What is the assembler syntax to determine which of two numbers is greater? What is the lower level (machine code) …

assembly x86 compare machine-code
How to Calculate Jump Target Address and Branch Target Address?

I am new to Assembly language. I was reading about MIPS architecture and I am stuck with Jump Target Address …

assembly mips machine-code
What's the relationship between assembly language and machine language?

Are assembly language and machine language (for the same underlying system) really the same? Are there any differences between these …

assembly architecture operating-system machine-code instruction-set
How to write and execute PURE machine code manually without containers like EXE or ELF?

I just need a hello world demo to see how machine code actually works. Though windows' EXE and linux' ELF …

machine-code
How can ARM's MOV instruction work with a large number as the second operand?

I just begin to study ARM assembly language, and am not clear about how to use MOV to transfer an …

assembly arm cpu-architecture machine-code immediate-operand
What is the difference between native code, machine code and assembly code?

I'm confused about machine code and native code in the context of .NET languages. What is the difference between them? …

.net assembly bytecode machine-code
What converts Assembly language to machine code

I am new to programming and I started with C++ language, as far as I know C++ language is converted …

assembly machine-code object-code
JMP instruction - Hex code

Have a doubt regarding the hex code conversion of JMP machine instruction. I have the absolute address I want to …

assembly hex x86-64 machine-code
How to write and executable Windows .exe manually (machine code with Hex editor)?

I'd like to know how is it possible to write something as simple as an Hello World program just by …

windows exe executable machine-code