Answer :
Here are the instructions rewritten using two instructions each for loading and storing values:
1. Load the value 0xFF into the W register:
```
movlw 0xFF
movwf 0x20
```
2. Load the value 0x00 into the W register:
```
movlw 0x00
movwf 0x22
```