Tagged Questions
17
votes
16answers
2k views
14
votes
4answers
822 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 ...
7
votes
1answer
317 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 ...
4
votes
3answers
158 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
9answers
370 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 ...
3
votes
2answers
156 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 ...
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
4answers
213 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
140 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.
1
vote
3answers
82 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
90 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
1answer
102 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
125 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
3answers
344 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
472 views
the relationship between machine and assembly language
What's the relationship between machine language and assembly language programming?
1
vote
7answers
212 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
723 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
116 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
185 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
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
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
275 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
1answer
62 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 ...