The machine-code tag has no wiki summary.
38
votes
8answers
27k views
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 difference?
5
votes
7answers
4k views
How to write/execute PURE machine code manually?
I just need a hello world demo to see how machine code actually works.
Though windows' EXE and linux' ELF is near machine code,but it's not PURE
How can I write/execute PURE machine code?
8
votes
8answers
938 views
Why aren't EXE's in binary?
Why is it that if you open up an EXE in a hex editor, you will see all sorts of things. If computers only understand binary then shouldn't there only be 2 possible symbols seen in the file? Thanks
15
votes
4answers
2k views
Homoiconic and “unrestricted” self modifying code + Is lisp really self modifying?
I will be forward in admiting that my knowledge of Lisp is extremely minimal. However I am extremely interested in the language and plan to begin seriously learning it in the near future. My ...
4
votes
9answers
590 views
How are hex sequence translated to assembly without ambiguity?
8B EC 56 8B F4 68 00 70 40 00 FF 15 BC 82 40
A senquence like above can be segmented in various ways,each segment can be translated to corresponding assembly instruction, but each binary ...
1
vote
2answers
532 views
Is assembly code cross-platform?
0x042444FF; /* inc dword ptr [esp+4] */
0x042444FF is the machine code,while inc dword ptr [esp+4] is the assembly code, I know
machine code is NOT cross-platform,as it depends on many factors.
...
8
votes
2answers
872 views
Making gcc generate only machine code
More specifically, I would like to produce a file that I can load into memory (for example with mmap) and then jump to the start of that memory to run the code. Ideally, I'd like the option of either ...
1
vote
1answer
162 views
C Preprocessor Pseudo-Assembly with embedded byte-code interpreter, how to find similar deep magick? [closed]
I know the common opinion is that it is a Bad Thing to make your language look like something else, because it obscures what's going on even for those who kno the language well. But for reading, ...
16
votes
4answers
3k views
What is the difference between native code, machine code and assembly code?
I'm confused about machine code and native code. What is the difference between these?
Are these the same or not please?
8
votes
4answers
1k views
Can a .NET app be compiled to native?
Just wondering if a .NET app can be compiled down to native machine code ahead of time? I'm not planning on doing so even if I could; I'm just curious.
Thanks
4
votes
1answer
144 views
Why are JIT-ed languages still slower and less memory efficient than native C/C++?
Interpreters do a lot of extra work, so it is understandable that they end up significantly slower than native machine code. But languages such as C# or Java have JIT compilers, which supposedly ...
3
votes
9answers
595 views
Why can't we create programs cross-platforms these days?
I just wonder, if all compilers in any language transform the code into the only language "talked" in the computer guts (Machine Code - zeros and ones), why is it so hard to pass .NET windows ...
2
votes
5answers
8k views
machine code to compare two numbers
what is the assembler syntax to see which of two numbers is greater? what is the lower level (machine code) for it? can we go even lower? once we get to the bit level, what happens? how is it ...
0
votes
3answers
215 views
Is there a command line tool to get the machine code for an assembly instruction?
0x042444FF; /* inc dword ptr [esp+4] */
I need this tool to know which part means inc , dword or vice versa.
4
votes
2answers
160 views
Where to store the bootloader on a floppy image?
I'm going to write and test a bootloader. In order to do this, I am planning to copy the bootloader onto a floppy image file and mount it in a VM.
However, I'm not sure where to put the bootloader's ...
1
vote
7answers
352 views
Is it necessary that each machine code can only map to one assembly code?
Suppose these two are essensially the same:
push 1
and
0x1231
Which says each assembly instruction maps to a machine code.
But is it necessary that each machine code can only map to one ...
0
votes
2answers
109 views
How to tell if a binary sequence is x86 machine code?
We all know that in x86 arch, the data and code is mixed in the memory or disk. But how to tell them?
The method is needed for paper, I wouldn't expect a 100% accuracy. 80%'s just ok, even some ideas ...