From cad4438f287a7cbd1fa71d83759f3ee0367c1b79 Mon Sep 17 00:00:00 2001 From: John Winans Date: Wed, 22 May 2019 15:09:03 -0500 Subject: [PATCH] Correct trivial formatting problems. --- book/elements/chapter.tex | 10 +++++----- book/programs/chapter.tex | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/book/elements/chapter.tex b/book/elements/chapter.tex index bbc79a3..fd3c667 100644 --- a/book/elements/chapter.tex +++ b/book/elements/chapter.tex @@ -4,11 +4,11 @@ \section{Assembly Language Statements} Introduce the assembly language grammar. -Statement = 1 line of text containing an instruction or directive. - -Instruction = label, mnemonic, operands, comment. - -Directive = Used to control the operation of the assembler. +\begin{itemize} +\item Statement = 1 line of text containing an instruction or directive. +\item Instruction = label, mnemonic, operands, comment. +\item Directive = Used to control the operation of the assembler. +\end{itemize} \section{Memory Layout} diff --git a/book/programs/chapter.tex b/book/programs/chapter.tex index 904c074..b12731f 100644 --- a/book/programs/chapter.tex +++ b/book/programs/chapter.tex @@ -75,11 +75,11 @@ an instruction that accomplishes nothing while simply advancing the unused memory between two instructions in a program.% \footnote{This can happen during the evolution of one portion of code that reduces in size but has to continue to fit into a system without -altering any other code\ldots\ or some times you just need to waste +altering any other code\ldots\ or sometimes you just need to waste a small amount of time in a device driver.} An instruction that accomplishes nothing is called a \insn{nop} -(some times systems call these \insn{noop}). The name means +(sometimes systems call these \insn{noop}). The name means {\em no operation}. The intent of a \insn{nop} is to execute without having any side effects other than to advance the \reg{pc} register.