Assembly language
PicoBlaze–Word Parity: Write an assembly program to compute the parity of a given word. A word has an evenparity if it has even number of 1’s (e.g., 01101001). Otherwise, it has odd parity (e.g.,10101110). Assume that the word is presented on the IN_PORT (for only two clock cycles). The parity result must be presented on the OUT_PORT. The procedure must output 000hex if the word has even parity and 001hex if it has odd parity. Disable interrupt handling during the parity computation and re-enable when done. Simulate your program using pBlazeIDE simulator.