Tagged Questions
The machine-code tag has no wiki summary.
17
votes
16answers
2k views
14
votes
4answers
812 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?
12
votes
8answers
13k 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?
10
votes
3answers
1k 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 ...
10
votes
5answers
179 views
If they eventually become machine code, why aren't compiled languages equally performant?
I hope this is not a stupid question. If C#, Java, or C++, for example, all eventually compile to machine code, why are they not equally performant?
My understanding is that such languages are an ...
9
votes
8answers
694 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
7
votes
2answers
357 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 ...
7
votes
1answer
312 views
static code analysis for assembly language
Are there any open-source tools or libraries for static code analysis of simple custom assembly-like languages (for automatically generated programs) and what are they capable of (detecting unused ...
7
votes
4answers
1k views
Can a .NET app be complied 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 if you can, I'm just curious.
Thanks
5
votes
4answers
479 views
Questions Regarding the Implementation of a Simple CPU Emulator
Background Information: Ultimately, I would like to write an emulator of a real machine such as the original Nintendo or Gameboy. However, I decided that I need to start somewhere much, much simpler. ...
4
votes
3answers
155 views
In x86 assembly how can you set the zero flag (ZF) without doing a compare operation?
I have a short piece of (x86) assembly that I am trying to figure out what it does.
...
6: 81 ec 00 01 00 00 sub $0x100, %esp
c: 31 c9 xor %ecx , %ecx
e: ...
4
votes
4answers
139 views
How can I see the 0s and 1s / machine code from a executable file / object file?
I already tried this, I opened a a.out file with a text editor but I get only a bunch of characters with some instructions in it like:
üÙ
4
votes
9answers
369 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 ...
4
votes
2answers
91 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 ...
4
votes
3answers
467 views
Loading MachineCode From File Into Memory and Executing in C — mprotect Failing
Hi I'm trying to load raw machine code into memory and run it from within a C program, right now when the program executes it breaks when trying to run mprotect on the memory to make it executable. ...
3
votes
2answers
155 views
68k register addresses
This question is begging for a bunch of "why are you doing this?" responses.
I haven't been able to find this information in the 68k Programmer's Reference Manual, but that may be because I'm not ...
3
votes
5answers
812 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?
3
votes
8answers
482 views
Can software be executed in bare metal machine?
I just wonder, can we execute a program on a machine without an operating system?
Besides, I heard that the Linux kernel is written in C language and a kernel is run during booting, so I just wonder ...
3
votes
9answers
575 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
1answer
79 views
push return values in stack frame
I'm wondering if it makes sense to push the return value of a function in its the stack-frame.
I know return values are mostly stored in registers (eax for gcc), but is it for performance only?
...
2
votes
2answers
90 views
Building a custom machine code from the ground up
I have recently begun working with logic level design as an amateur hobbyist but have now found myself running up against software, where I am much less competent. I have completed designing a custom ...
2
votes
4answers
204 views
What compiler would I use to write machine language?
Just out of interested I would like to write a small program in machine code.
I am currently learning about registers, ALU, buses and memory and I'm slightly fascinated that instructions can be ...
2
votes
4answers
139 views
Is there a way to get all instructions my CPU supports programmatically?
Or is there a tool for this kind of job?
I want also get the corresponding machine code for each instruction.
2
votes
2answers
945 views
Difference between Machine code and Object Code
I'm in the middle of my a levels and im doing some revision for my Computing exam.
I was wondering if someone could tell me what the difference is between machine code and object code.
keep it it ...
1
vote
3answers
70 views
How to include and translate custom instructions/extension on standard C/C++ code keeping performance high
I'm developing a general purpose image processing core for FPGAs and ASICs. The idea is to interface a standard processor with it. One of the problems I have is how to "program" it. Let me explain: ...
1
vote
3answers
81 views
How does machine code access parameters to a subroutine call?
When running a program you can pass paramters, e.g.
$ myProgram par1 par2 par3
In C you can access these paramters by looking at argv,
int main (int argc, char *argv[])
{
char* aParameter = ...
1
vote
4answers
89 views
How do I figure out what an executable does?
I have a short set of machine instructions (160 bytes), and I dont know what it does.
Im on a mac and I ran it under a GDB dissasembler and it came out with this:
....f3c0: jmp 0x7fff5fbff3c6
...
1
vote
2answers
143 views
Can a hex editor be used to edit the instructions in an executable binary?
If I have a binary executable containing compiled C code, can I use a hex editor to edit that binary and change a specific instruction into another one, such as nop or jmp? How can I know the offset ...
1
vote
1answer
100 views
Assembly how to translate JNE to C Code without ZF flag access
ASM to C Code emulating nearly done.. just trying to solve these second pass problems.
Lets say I got this ASM function
401040 MOV EAX,DWORD PTR [ESP+8]
401044 MOV EDX,DWORD PTR [ESP+4]
401048 ...
1
vote
2answers
124 views
Assembly How to translate IMUL opcode (with only one oprand) to C code
Say I got
EDX = 0xA28
EAX = 0x0A280105
I run this ASM code
IMUL EDX
which to my understand only uses EAX.. if one oprand is specified
So in C code it should be like
EAX *= EDX;
correct?
After ...
1
vote
1answer
111 views
Super simple computers with minimal [closed]
When I went to the science museum in London, many years ago, they had, on display, a simple early computer, named 'The Nicolas' which consisted of 80-90 logic gates which, for any kind of computer is ...
1
vote
1answer
346 views
How to check the Language in which Exe is made
We were studying about compilers at college so this raised me curiosity that when we use the compilers and they form assemblies so is there any way you could know that ,if you are given any exe, which ...
1
vote
3answers
162 views
How to monitor machine code calls by binary program
My goal is to record the number of processor instructions executed by a given binary program through the duration of its run. While it's easy to get the actual machine code from the source code ...
1
vote
3answers
339 views
Are bytes/words/addresses signed or unsigned in Z80 assembler/machine code?
I am making an emulator for Z80 binaries but I cannot find out whether all the integer data types are signed or unsigned from the manual or from google. So are the numbers from registers A,B...HL,BC ...
1
vote
3answers
467 views
the relationship between machine and assembly language
What's the relationship between machine language and assembly language programming?
1
vote
7answers
211 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 ...
1
vote
4answers
718 views
Can anyone solve this 8080 assembly code 'puzzle'?
A friend of mine was given 8080 assembly code as part of a puzzle he's trying to solve.
This is the code:
3E 02
4F
C6 04
47
11 41 01
21 69 00
19
76
He needs the values of B, DE, C and HL
Can anyone ...
1
vote
5answers
2k 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
2answers
30 views
Machine Code Jump Destination Calculation
Ok, so I need to hook a program, but to do this I am going to copy the instructions E8 <Pointer to Byte Array that contains other code>. The problem with this is, that when I assemble Call 0x100 ...
0
votes
2answers
115 views
Assembly How to translate opcode DIV to C Code
Hey I know I been asking alot of questions.. but not much resources on this on google so hopefully this will help future people who attempt to do similar projects, I always google solutions as well, ...
0
votes
1answer
176 views
Assembly How to convert REP STOS to C code
I been debugging REP STOS DWORD PTR ES:[EDI] for a while now
From my conclusion it always uses
ECX as counter.
EAX as the value that will be copied over EDI and then appended ECX times
so after ...
0
votes
3answers
63 views
Anticipating program crashes
I'm working on a program that should be able to tell if any program I run on my computer will crash.
Presumably it's possible to read in the machine code, build a model of the potential code paths, ...
0
votes
4answers
166 views
What stages would be involved in compiling Assembly language to Machine Code
I'm trying to write a compiler to take an assembler file which will output raw machine code instructions.
I've found lots of tutorials on how to write a compiler, but I'm wondering if all the stages ...
0
votes
3answers
137 views
How does Software interface with Hardware at the fundamental level? [closed]
This question has been asked before, but never satisfactorily. How are the binary 0's and 1's (which are still just characters on a page until somebody explains otherwise) physically/mechanically ...
0
votes
1answer
60 views
What is the point of padding?
In particular, I'm reading into the Mach-O binary file format for Intel 32 on OS X. After the FAT header there is a whole bunch of padding before the offset of the first archive. What is the point of ...
0
votes
3answers
123 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.
0
votes
2answers
271 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.
...
0
votes
4answers
121 views
cast pointer to functor, and call it
can I do something like:
typedef void (*functor)(void* param);
//machine code of function
char functionBody[] = {
0xff,0x43,0xBC,0xC0,0xDE,....
}
//cast pointer to function
functor myFunc = ...
0
votes
1answer
61 views
What AOP tools exist for doing aspect-oriented programming at the assembly language level against x86 application files for native OS X and MS-Windows native executables?
Looking for a tool I can use to do aspect-oriented programming at the assembly language level. For experimentation purposes, I would like the code weaver to operate native application level ...
0
votes
4answers
508 views
Kind of self-modifying program in C [closed]
Is it possible to write a C function that does the following?
Allocate a bunch of memory in the heap
Writes machine code in it
Executes those machines instructions
Of course, I would have to ...