Skip to content
Snippets Groups Projects
Commit c5220bae authored by nieminen's avatar nieminen
Browse files

Syntaksivirhe korjattu konekieliesimerkistä.

parent f8f102bf
No related branches found
No related tags found
No related merge requests found
......@@ -119,10 +119,10 @@ Assemblerilla muistiosoitteiden käyttö voisi näyttää
esim. seuraavalta:
\begin{lstlisting}[language={[x86masm]Assembler}]
movq $13, %(rbp) # lähde "immediate",
movq $13, (%rbp) # lähde "immediate",
# kohde "register indirect"
movq $13, -16%(rbp) # lähde "immediate",
movq $13, -16(%rbp) # lähde "immediate",
# kohde "base plus offset"
\end{lstlisting}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment