Lab01
Lab 1: Introduction Welcome to the first lab of our assembly language course, where we'll delve into the world of Mob Programming using the 6502 Emulator. Mob Programming is an extended form of Pair Programming, allowing a group to collaborate on coding tasks with designated roles like Driver and Presenter. This collaborative approach enhances problem-solving and knowledge sharing among group members. In this lab, we'll explore filling a bitmapped display with colour and optimizing code performance in assembly language. Setting Up Open the 6502 Emulator at 6502 Emulator in another tab or window. Save your work periodically as the emulator does not auto-save. Use methods like copying code to a local file or using Git for version control. Bitmap Code We'll start by filling the emulator's bitmapped display with the color yellow using the following code: assembly Copy code lda #$00 ; set a pointer in memory location $40 to point to $0200 sta $40 ; ... lo...