__mul_instruction() function
Multiply two integers using an assembly `MUL` instruction This multiplies a by b using multiply instruction using the ARM mul instruction regardless of values (the compiler might otherwise choose to perform shifts/adds), i.e. this is a 1 cycle operation.
Return value
a * b