0
strlen in assembly 的問題與彙編中的strlen有關,但似乎是用AT & T語法編寫的,遺憾的是彙編程序不支持該語法。英特爾語法是[eax + ebx],什麼是AT&T語法等效?
我只是好奇如何將語法[eax + ebx]翻譯成intel的語法?
所以
4(%eax) # offset 4
相當於
[eax + 4]
假設的偏移值存儲在%EBX。 什麼是
[eax + ebx]
?
%ebx(%eax) # doesn't work!
感謝,