Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
4
votes
4answers
2k views

Finding locations in machine code (gcc/objdump -d)

If you have a particular line of C code in mind to examine in the machine output, how would you locate it in objdump output. Here is an example if (cond) foo; bar(); and I want to see if bar ...
3
votes
0answers
64 views

Noise on CCSprite

I made my project to show simple texture by using CCSprite. But I found that the texture contains some tiny noise , black pixel bug. I divided the png file into small piece by using code. And add it ...
3
votes
1answer
1k views

How can I examine contents of a data section of an ELF file on Linux?

I've been using objdump to look at assembly code in Linux ELF binaries. Sometimes there is an indirect jump through a jump table that is stored in the rodata (read-only data) section. I have tried ...
2
votes
1answer
66 views

Problem with rotate circle

I want to rotate circle follows my finger's path. If I move my finger more fast, then the circle must rotate fast. If I move my finger slowly, the circle must slow. Also circle's movement must ...
2
votes
0answers
79 views

How to Save CCSprite as PNG [closed]

I created CCSprite and add it to the main view. Then I want to see the sprite image, so I saved it to PNG But lots of them doesn't saved correctly. Only show white background. I can't know the reason, ...
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
1answer
72 views

What is a TEX in OpenCL?

What is TEX in the object code of my OpenCL program? I put my kernel in the kernel analyzer and I saw the label TEX in the object code. I'm not sure what it means. I didn't find the description in the ...
1
vote
2answers
49 views

Trace of the language on the object code

Is it possible to look at an object code and tell which language has been used originally to produce it? or does the language leaves a trace or a stamp on the object code ? do the compilers of ...