Update linked lists after write operation
- queue(i) = empty
- point head and tail of queue(i) to new block
- queue(i).empty ? 0
- ready_flag ? 1
- queue(i) = not empty
- point tail of queue(i) to new block
- point next register former tail to new tail
- ready_flag ?1
-