From d7ada8949cef6564a5e50c8b08a138a2c5925a5d Mon Sep 17 00:00:00 2001 From: Chris Pressey Date: Thu, 8 Mar 2018 15:34:28 +0000 Subject: [PATCH] Tweaks to README. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb6d894..1696c70 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ static analysis. "6502-assembly-like" means that it has similar restrictions as programming in 6502 assembly (e.g. the programmer must choose the registers that -values will be stored in) and is concomittantly easy for a compiler to +values will be stored in) and is concomitantly easy for a compiler to translate it to 6502 machine language code. "Advanced static analysis" includes _abstract interpretation_, where we @@ -26,8 +26,8 @@ In practice, this means it catches things like * you tried to write the address of something that was not a routine, to a jump vector -and suchlike. It also provides some convenient operations and abstractions -based on common machine-language programming idioms, such as +and suchlike. It also provides some convenient operations based on +machine-language programming idioms, such as * copying values from one register to another (via a third register when there are no underlying instructions that directly support it); this