Spyke
Assembly Devs are supreme
View all comments
humanman avatar

Assembly is so strange, and impossible to learn. Not because I can’t learn it, but because there are zero resources, and god forbid a real IDE for 64-bit environments exists.

2
sattyammane avatar

I do know some assembly. Like i have coded for 8085 before. But.. yeah ...I'm a weak developer even for assembly.

1
humanman avatar

Please, teach me a crumb of knowledge

0
humanman avatar

I appreciate the info, and I’ll definitely look into learning that. However, those processors are more than 40 years old. I want to learn x86 for an intel i9 processor :P

But still, thank you very much. This is good enough.

0
yd avatar
@ydreply

i9 uses an x64 CISC instruction set. Intel has advanced silicon technology so much that it's really hard to code in assembly on the i9 (much harder than a Pentium at least)

GCC (the GNU C Compiler) claims it can produce optimised x64 executables, even better than if someone handwritten them in assembly.

ARM however is a different beast. I recommend the ARM RISC assembly for beginners. Pretty sure there's plenty of documentation for ARM, and you can just buy a Raspberry Pi to tinker with (many smartphones use ARM-based chipsets too, although tinkering with those would need jailbreaking/rooting)

0