1 // The code generates a test case which is used
2 // to detect whether Binutil supports hint
3 // instruction correctly or not.
4 #include <string.h>
5 #include <stdio.h>
6 
main()7 int main()
8 {
9 	char str[32766];
10 	memset(str,'\n',32765);
11 	str[32765]=0;
12 	printf("%s(p7) hint @pause\n",str);
13 
14 	return 0;
15 }
16