Write an instruction sequence to set the contents of memory locations at $1000, $1010, and $1020 to 10, 11, and 12 respectively.

a) $1000 = 10; $1010 = 11; $1020 = 12;
b) SET $1000,10; SET $1010,11; SET $1020,12;
c) MOVE 10 TO $1000; MOVE 11 TO $1010; MOVE 12 TO $1020;
d) STORE 10, $1000; STORE 11, $1010; STORE 12, $1020;