diff options
| -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 |