Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
AT&T hört sich viel cooler an?an dieser Stelle garnicht wie ich es beschreiben soll aber vielleicht könnt ihr euch es ja auch denken.
movl %esp,%ebp
mov ebx,esp
Intel Syntax
mov al,bl <- das sind 8-Bit Teilregister. Muss man da noch "movB" für Byte schreiben?
mov ax,bx <- 16-Bit Teilregister - wiederum: muss das movW sein?
mov eax,ebx
mov eax, dword ptr [ebx] <--- man sagt explizit, dass man
ein DWORD Wert kopieren möchte.
AT&T Syntax
movb %bl,%al
movw %bx,%ax
movl %ebx,%eax
movl (%ebx),%eax