Please help me convert this pseudo codes to C Program.
In parallel, every processor executes the following loop:
LOOP:
LOAD REG[1] MEM[V] Load the value of previous time step from
MEM[V]
MOVE RN REG[1]
ROUTE RN Send to the North
MOVE REG[2] ROUTE Save value from the south
MOVE RE REG[1]
ROUTE RE
ADD REG[2] ROUTE Add in value from the west
MOVE RS REG[1]
ROUTE RS
ADD REG[2] ROUTE Add in value from the north
MOVE RW REG[1]
ROUTE RW
ADD REG[2] ROUTE Add in value from the east
DIV REG[2] MEM[C] Obtain the average of the four neighbors
ADD REG[2] MEM[C] Add in local charge
STORE MEM[V] REG[2] Save the value of present time step to MEM[V]