about summary refs log tree commit diff stats
path: root/subx/Readme.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-01-30 10:08:47 -0800
committerKartik Agaram <vc@akkartik.com>2019-01-30 10:08:47 -0800
commit44bb71e7de835abb5697b6712c79e5f4799fb77c (patch)
tree937bc3bc75aa68c89cb3c518cf8e230f68be8feb /subx/Readme.md
parent95540b2452f1bb76e351c626400c4af2f2810d15 (diff)
downloadmu-44bb71e7de835abb5697b6712c79e5f4799fb77c.tar.gz
4943
Diffstat (limited to 'subx/Readme.md')
-rw-r--r--subx/Readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/Readme.md b/subx/Readme.md
index 042f8871..ed09d502 100644
--- a/subx/Readme.md
+++ b/subx/Readme.md
@@ -107,7 +107,7 @@ natively on Linux, and they require only the Linux kernel.
 I'm currently implementing SubX in SubX in 3 phases:
 
   1. Converting ascii hex bytes to binary. (✓)
-  2. Packing bitfields for x86 instructions into bytes.
+  2. Packing bitfields for x86 instructions into bytes. (80% complete)
   3. Replacing addresses with labels.
 
 In parallel, I'm designing testable wrappers for syscalls, particularly for
@@ -126,7 +126,7 @@ This program sums the first 10 natural numbers. By convention I use horizontal
 tabstops to help read instructions, dots to help follow the long lines,
 comments before groups of instructions to describe their high-level purpose,
 and comments at the end of complex instructions to state the low-level
-operation they perform. Numbers are always shown in hexadecimal (base 16).
+operation they perform. Numbers are always in hexadecimal (base 16).
 
 As you can see, programming in SubX requires the programmer to know the (kinda
 complex) structure of x86 instructions, all the different operands that an