(first program to modify memory location 0300) ROCKWELL AIM 65 <*>=0200 0200 LDA #55 A9 55 0202 STA 0300 8D 00 03 0205 BRK 00 0206 BRK 00 0207 (notice that 0300 has the intial value 3C) =0300 3C 48 A7 DD (run the program) <*>=0200 / 0206 00 BRK (check the result -- notice that 0300 has the value 55) =0300 55 48 A7 DD <