我会汇编 看x86指令集 还有sse指令集 别的不咋用 顺便提起了面试谈薪水
https://www.cainiaoya.com/assemblylanguage/assembly-language-jiaocheng.html
x86指令网站在线的
sse的维基百科
https://osdev.wiki/wiki/SSE
https://docs.oracle.com/cd/E26502_01/html/E28388/eojde.html
stl 内存管理库 stand templet lib
https://www.shouce.ren/api/c/index.htm#
https://www.shouce.ren/api/c/index.htm#
c++ 内联汇编
int temp1 = 0;
__asm {
eax push, 555;
ebx push, temp1;
add ecx eax,ebx;
push temp1,ecx;
}
cout
页:
[1]