Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions latex/english/pcasm1.tex
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ \subsection{The CPU\index{CPU|(}}
does not keep track of minutes and seconds. It simply beats at a
constant rate. The electronics of the CPU uses the beats to perform
their operations correctly, like how the beats of a metronome help one
play music at the correct rhythm. The number of beats (or as they are
usually called \emph{cycles}) an instruction requires depends on the
play music at the correct rhythm. The number of beats (or \emph{cycles}, as they are
usually called) an instruction requires depends on the
CPU generation and model. The number of cycles depends on the
instructions before it and other factors as well.

Expand Down Expand Up @@ -831,7 +831,7 @@ \subsubsection{Data directives\index{directive!data|(}}
\begin{AsmCodeListing}[frame=none, numbers=none]
mov dword [L6], 1 ; store a 1 at L6
\end{AsmCodeListing}
\index{DWORD}This tells the assembler to store an 1 at the double word that starts at
\index{DWORD}This tells the assembler to store a 1 at the double word that starts at
{\code L6}. Other size specifiers are: {\code BYTE}\index{BYTE}, {\code WORD}\index{WORD},
{\code QWORD}\index{QWORD} and {\code TWORD}\footnote{{\code TWORD} defines a ten byte
area of memory. The floating point coprocessor uses this data type.}\index{TWORD}.
Expand Down