Question: Translate the given code into MIPS64 assembly language.
The variables in the code below are 64-bit integers. The addresses of 'a', 'b', 'c' and 'f' are 64, 72, 80, 88, respectively.
For convenience, you can use the instructions 'blt' (branch on less than), 'ble' (branch on less or equal), 'bgt' (branch on greater than) and 'bge' (branch on greater or equal).
if(a==b && a<=c)
f = 4;
You need to make well-formed and clean code. You should not copy and paste the code from other source.