6502 tutorial series for beginners.

Building your first 6502-based project? We'll help you get started here.
Post Reply
andrew
Posts: 12
Joined: 26 Aug 2019

6502 tutorial series for beginners.

Post by andrew »

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
Last edited by andrew on Sat Aug 01, 2020 1:50 pm, edited 1 time in total.
User avatar
BigDumbDinosaur
Posts: 9428
Joined: 28 May 2009
Location: Midwestern USA (JB Pritzker’s dystopia)
Contact:

Re: 6502 tutorial series for beginners.

Post by BigDumbDinosaur »

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!
Your introduction looks pretty good. However, I will introduce a pedantic matter.

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. :D A novice reader who doesn't know the terminology can be confused when the writer doesn't use the right words.
x86?  We ain't got no x86.  We don't NEED no stinking x86!
User avatar
BigEd
Posts: 11464
Joined: 11 Dec 2008
Location: England
Contact:

Re: 6502 tutorial series for beginners.

Post by BigEd »

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.
andrew
Posts: 12
Joined: 26 Aug 2019

Re: 6502 tutorial series for beginners.

Post by andrew »

BigDumbDinosaur wrote:
However, I will introduce a pedantic matter.
That's totally ok! I totally agree with you about ambiguity and technical language. I am still able to edit my post on medium, when I get a chance I will go over what I wrote and take into account what you said. Thanks!
Post Reply