I think the best reason to learn assembly is not to write rather be able to read compiler output.
Assembly Language for Beginners [pdf]
31–40 of 101 posts
Re: Assembly Language for Beginners [pdf]
#32Re: Assembly Language for Beginners [pdf]
#33Re: Assembly Language for Beginners [pdf]
#34I actually got paid a salary for learning & programming in IBM mainframe assembler (BAL or Basic Assembly Language) in 1970, for an insurance company. The CPU memory was so small (32K, yes 32,768 bytes) that the only way we could squeeze enough functionality was to write in assembler, with overlays (no virtual memory). Debugging consisted of manually toggling hex data and instructions at the control panel. What a bla…
Re: Assembly Language for Beginners [pdf]
#35This isn't for beginners. What beginner's assembly text covers multiple architectures and assembly flavors? My recommendation for beginner's assembly on linux is to write toy code in C and then view the disassembly in gdb or objdump. You have options to switch to Intel syntax from GAS/AT&T if you want. I'm generally against using windows for anything, but Visual Studio has decent disassembly debug options where you c…
Re: Assembly Language for Beginners [pdf]
#36Re: Assembly Language for Beginners [pdf]
#37Re: Assembly Language for Beginners [pdf]
#38Re: Assembly Language for Beginners [pdf]
#39I feel like 6502 assembly is probably better for beginners, but that might be because that's what I'm trying to teach myself...