Identify and correct the errors in the following inline assembly code that calculates the sum of four integers. int sum4(int a, int b, int c, int d)f int t; _asm { ADD t, re, ri; ADD t, r2; ADD t, r3; return t int main(void) int s sum4(1, 2, 3, 4); while(1); Show transcribed image text Identify and correct the errors in the following inline assembly code that calculates the sum of four integers. int sum4(int a,
OR
OR