The tag has no wiki summary.

learn more… | top users | synonyms

68
votes
2answers
2k views

int operators != and == when comparing to zero

I've found that != and == are not the fastest ways for testing for zero or non-zero. bool nonZero1 = integer != 0; xor eax, eax test ecx, ecx setne al bool nonZero2 = integer < 0 || integer > ...
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?
25
votes
17answers
3k views

Is there a programming language “below” Assembly? [closed]

Is there a programming language "below" Assembly?
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?
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 ...
11
votes
5answers
345 views

Why do compiled languages not perform equally if they eventually become machine code?

If C#, Java, or C++, for example, all compile to machine code, why are they not equally performant? My understanding is that such languages are an abstraction of machine code, which is what they all ...
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
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
8
votes
2answers
873 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 ...
8
votes
4answers
2k views

Writing an executable 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 using an Hex Editor. I know that I could use an assembler and assembly language to this at a near ...
7
votes
1answer
844 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
1answer
240 views

C++ - extremely strange machine code behaviour

The full code is here: http://pastebin.com/MM3vWmqA In the function fast_generator I've added comments to two statements. If you switch those statements, the code will run ~1.8x faster. If you remove ...
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?
5
votes
4answers
897 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
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 ...
4
votes
3answers
326 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 = ...
4
votes
4answers
2k 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
226 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
1answer
63 views

Why is this machine code generated for “inc qword [rsp]”?

Consider this x64 NASM-syntax assembly: inc qword [rax] inc qword [rcx] inc qword [rdx] inc qword [rbx] inc qword [rsp] inc qword [rbp] inc qword [rsi] inc qword [rdi] After assembling with nasm ...
4
votes
3answers
488 views

Converting PIC Assembly Instruction to machine code

I've seen there are specific formats to convert MIPS assembly instruction to machine code. There should be similar procedure to convert PIC assembly to machine code manually. Can anyone kindly provide ...
4
votes
1answer
146 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 ...
4
votes
3answers
990 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. ...
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 ...
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 ...
3
votes
8answers
726 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
3answers
783 views

What does actual machine code look like at various points? [closed]

There seems to be many opinions on what machine code actually is. I've heard some say it's assembly, or binary, or hex. Is it correct to say that machine code is essentially a set of instructions ...
3
votes
1answer
292 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? ...
3
votes
4answers
299 views

Compiling C and assembling ASM into machine code [closed]

I have three questions: What compiler can I use and how can I use it to compile C source code into machine code? What assembler can I use and how can I use it to assemble ASM to machine code? ...
3
votes
2answers
343 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
2answers
2k views

Difference between Machine code and Object Code [duplicate]

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 ...
3
votes
2answers
330 views

What is the difference between machine code and opcode?

The question is mostly related to PHP because IMHO opcode is mostly mentioned in PHP context. According to this description, here's a transformation process of php code into opcode: php text -> ...
3
votes
1answer
57 views

Is the machine code generated by JIT same for two different systems?

I'm a C# beginner, Is the machine code generated by the JIT in run time is same for the two different systems having exactly same configuration?
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 ...
2
votes
4answers
607 views

How does machine code communicate with processor?

Let's take Python as an example. If I am not mistaken, when you program in it, the computer first "translates" the code to C. Then again, from C to assembly. Assembly is written in machine code. (This ...
2
votes
1answer
86 views

Is there an assembler that will let me 'inline' machine code?

I've done lots of looking on Google for a way that you could include machine code right inside of an assembly source file. I haven't had any luck. What I mean by 'inline machine code' might be ...
2
votes
4answers
236 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
5answers
456 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
2answers
83 views

Library for manipulating machine code at runtime?

Is there any C library for manipulating x86 / x64 machine code? Specifically, I'd like to modify a function in my program's address space at runtime. For example, I have the functions foo and bar, ...
2
votes
1answer
56 views

Is all data valid x86 16-bit machine code?

Executing ndisasm /dev/urandom seems to never give me any errors. This suggests that I am either very lucky or all bytes really disassemble into 16-bit assembler. I am facing an actual issue because ...
2
votes
2answers
279 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 ...
1
vote
1answer
567 views

Reverse Engineer Assembly

I am a new starter for reverse engineering and I wish to learn more, I tried to disassemble a target exe where I come across some functions that I couldn't really interpret. Hopefully someone help ...
1
vote
4answers
222 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
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. ...
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 ...
1
vote
2answers
1k 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
3answers
786 views

the relationship between machine and assembly language

What's the relationship between machine language and assembly language programming?
1
vote
3answers
570 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
5answers
1k 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 ...
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, ...
1
vote
1answer
258 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 2