Translate following C++ code into assembly language: // Strcpy: // \$s1 -> char s1[] = "Hello!"; // \$s2 -> char *s2 = malloc(sizeof(char)*7); int i=0; do {s2[i]=s1[i]+1 i++; \} while(s1[i] != '\0'); s2[i]= \0 ';
What instruction is 0x00009B03? If not a valid instruction, tell why?