tags:

views:

90

answers:

4

I have been trying to learn assembly for a few years now. I get to do a "Hello, World" program but never further. I find it so hard. Is anyone able to point me to a place or maybe even themselves, teach me some? I have prior programming experice mainly in python. So i am not completely unfamiliar with programming.

A: 

Start with learning C. From C to assembly language is a small step (maybe not so small, but a lot of statements can be translated 1-to-1), and probably you will find that you do not need assembly anyway.

GvS
+1  A: 

I have used this book with great success, starts from the beginning, and works through to more complex topics: Assembly Language Step-by-Step

fARcRY
A: 

You might find some help in these popular questions:

Learning assembly

Resources for learning ARM assembly

DOK
This is a comment, not an answer. It should also be accompanied by a close vote.
danben
A: 

Maybe start with comparing it to python, since that is what you are familar with. This link brings you to a site that compares programming languages. If you go to "99 Bottles of Beer" it shows the program in multiple languages which allows you to compare the python one with the assembler one to make links that can help you later. Other than that I would recommend looking up examples of simple programs to start off with and then going through them and making changes so you understand why and how it works. Then after that they are sites that release programming challenge questions and that allows you to try out new programs that you wouldn't have otherwise thought to try.

Kyra
Thanks for the link. I appreciate it.
Jake
np :D Glad to help.
Kyra