diff options
| author | mithe24 <mithe24@student.sdu.dk> | 2025-10-30 09:13:22 +0100 |
|---|---|---|
| committer | mithe24 <mithe24@student.sdu.dk> | 2025-10-30 09:14:31 +0100 |
| commit | 6987f066b1a6039b4033ba73a80664a6317d5a00 (patch) | |
| tree | cf230cde947cf2ae725f738c7fb30a3b7224499c /report | |
| parent | 5909443dc9b16aedb81f2d09f33d1d8efa48bf33 (diff) | |
| download | sorter-6987f066b1a6039b4033ba73a80664a6317d5a00.tar.gz sorter-6987f066b1a6039b4033ba73a80664a6317d5a00.zip | |
x86_64 -> x86-64
Diffstat (limited to '')
| -rw-r--r-- | report/report.tex | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/report/report.tex b/report/report.tex index 7cfc7a6..8fbd178 100644 --- a/report/report.tex +++ b/report/report.tex @@ -62,7 +62,7 @@ science. \noindent This project aims to study efficient sorting of a list of coordinates, when sorting by the second coordinate. This will be done entirely in -\textit{x86\_64 Linux Assembly}. Although abstract high level languages such as +\textit{x86-64 Linux Assembly}. Although abstract high level languages such as \textit{Python} and \textit{Java} allow faster and convenient development, Assembly provides precise control over program flow, memory usage and instruction level execution, making Assembly an excellent environment for @@ -231,9 +231,8 @@ swap elements in the array, we simply swap the memory addresses around. \section{Implementation} This four phase design has been converted into \textit{Assembly} code using the -\textit{x86\_64} instruction set. Furthermore the design has been split up in +\textit{x86-64} instruction set. Furthermore the design has been split up in modules, where each module is a collection of closely related functions. -\smallskip \noindent For example \texttt{array\_maker.s} contains functions meant to parse data and |