this post was submitted on 03 Jan 2025
388 points (95.5% liked)

Programmer Humor

32710 readers
280 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 19 points 5 days ago (3 children)

binaries aren't assembly though, they're *peers at notes, draws a blank* they're.... something else

[–] [email protected] 33 points 5 days ago

You just have to be able to navigate whatever executable file format it is, figure out where the data/code sections are, how different parts are linked together, and translate all the binary opcodes to readable mnemonics.

Easy. 😁

[–] [email protected] 25 points 5 days ago (1 children)

I think it’s most commonly called machine code.

[–] idunnololz 2 points 4 days ago

True. Machine code usually has a 1:1 mapping to assembly so it's not hard to read machine code as assembly. Although you will not see any of the labels (unless for some reason the the labels were left in).

[–] Ziglin 4 points 5 days ago

They're assembled into binary (together with metadata in some cases).