Hey all,
After spending some time learning assembly I have tried to write some posts aimed at someone who has never seen any low-level programming language before. I posted it on r/learnprogramming last week and it got a good reaction from people, so I thought I'd try sharing it here too. I have a few more posts almost ready to go on the subject of binary, the hardware, looking at the instruction set, and how to run the code we'll write.
I hope someone finds it useful!
Part 1: https://codeburst.io/an-introduction-to ... 1c819c0fa6
Part 2: https://codeburst.io/introduction-to-bi ... 7629463b54
edited to include the new, changed, url
6502 tutorial series for beginners.
6502 tutorial series for beginners.
Last edited by andrew on Sat Aug 01, 2020 1:50 pm, edited 1 time in total.
- BigDumbDinosaur
- Posts: 9428
- Joined: 28 May 2009
- Location: Midwestern USA (JB Pritzker’s dystopia)
- Contact:
Re: 6502 tutorial series for beginners.
andrew wrote:
Hey all,
After spending some time learning assembly I have tried to write some posts aimed at someone who has never seen any low-level programming language before. I posted it on r/learnprogramming last week and it got a good reaction from people, so I thought I'd try sharing it here too. I have a few more posts almost ready to go on the subject of binary, the hardware, looking at the instruction set, and how to run the code we'll write.
I hope someone finds it useful!
Link: https://medium.com/dev-genius/an-introd ... 1c819c0fa6
PS, sorry if this type of post isn't allowed here, if its breaking any rules I can definitely remove it!
After spending some time learning assembly I have tried to write some posts aimed at someone who has never seen any low-level programming language before. I posted it on r/learnprogramming last week and it got a good reaction from people, so I thought I'd try sharing it here too. I have a few more posts almost ready to go on the subject of binary, the hardware, looking at the instruction set, and how to run the code we'll write.
I hope someone finds it useful!
Link: https://medium.com/dev-genius/an-introd ... 1c819c0fa6
PS, sorry if this type of post isn't allowed here, if its breaking any rules I can definitely remove it!
In the context of programming a computer, the word "assembly" is a verb that refers to the step in which the source code is read and object code is generated. The software that does that is the "assembler"—the "assembler" is said to "assemble" the source code.
The language embodied in the source code is called "assembly language." When referring to the 6502 family of microprocessors, I use the phrase "65xx assembly language" to eliminate ambiguity. If referring to a specific member of the 6502 family, I use "65C816 assembly language" or "8502 assembly language," etc, again to eliminate ambiguity.
Terminology does matter when writing about technical subjects.
x86? We ain't got no x86. We don't NEED no stinking x86!
Re: 6502 tutorial series for beginners.
Yes, thanks for sharing your tutorials, Andrew! I've had a quick look - it is of course a bit difficult to put yourself into the position of an absolute beginner and try to get a sense of how the tutorial manages to build up the ideas. But another tutorial (series) is certainly welcome.
Re: 6502 tutorial series for beginners.
BigDumbDinosaur wrote:
However, I will introduce a pedantic matter.