We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e5d4df + d0ee576 commit 7b20527Copy full SHA for 7b20527
1 file changed
ee/startup/src/crt0.c
@@ -44,6 +44,7 @@ void __start(struct sargs_start *pargs)
44
{
45
asm volatile(
46
"# Clear bss area \n"
47
+ ".set noat \n"
48
"la $2, _fbss \n"
49
"la $3, _end \n"
50
"1: \n"
@@ -73,6 +74,7 @@ void __start(struct sargs_start *pargs)
73
74
" \n"
75
"# Jump to _main \n"
76
"j %2 \n"
77
+ ".set at \n"
78
: /* No outputs. */
79
: "R"(args_start), "R"(args), "Csy"(_main));
80
}
0 commit comments