首页 > 有没有大佬懂内联汇编的,求助
头像
成都小诸葛李博斯
编辑于 2020-08-24 16:19
+ 关注

有没有大佬懂内联汇编的,求助

char *strcpy(char *dest, const char *src)
{
	int d0, d1, d2;
	asm volatile("1:\tlodsb\n\t"
		"stosb\n\t"
		"testb %%al,%%al\n\t"
		"jne 1b"
		: "=&S" (d0), "=&D" (d1), "=&a" (d2)
		: "0" (src), "1" (dest) : "memory");
	return dest;
}
有没有大佬能给我详细解释一下约束修饰符&的意思,我看https://gcc.gnu.org/onlinedocs/gcc/Modifiers.html#Modifiers官网的解释没有懂😂

全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐