about summary refs log tree commit diff stats
path: root/vocabulary.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-26 22:10:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-26 22:10:04 -0700
commit85fe614cd9a55c8b8c826005bf3942a89d6dbcfa (patch)
treee68f79ed71dfd182bcd748b85e08d86e8f1ae338 /vocabulary.md
parent9c952560daefd45b6a554661401f1f90bf2a6abf (diff)
downloadmu-85fe614cd9a55c8b8c826005bf3942a89d6dbcfa.tar.gz
.
Diffstat (limited to 'vocabulary.md')
-rw-r--r--vocabulary.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/vocabulary.md b/vocabulary.md
index ef41a243..4c9666cd 100644
--- a/vocabulary.md
+++ b/vocabulary.md
@@ -238,11 +238,12 @@ Mu doesn't currently support interrupt-based mouse events.
 
 #### persistent storage
 
-`load-sector` synchronously reads a single _sector_ from a _disk_ of persistent
-storage. The disk must follow the ATA specification with a 28-bit sector
-address. Each sector is 512 bytes. Therefore, Mu currently supports ATA hard
-disks of up to 128GB capacity.
+`read-ata-disk` synchronously reads a whole number of _sectors_ from a _disk_
+of persistent storage. The disk must follow the ATA specification with a
+28-bit sector address. Each sector is 512 bytes. Therefore, Mu currently
+supports ATA hard disks of up to 128GB capacity.
 
-Similarly, `store-sector` synchronously writes a single sector to disk.
+Similarly, `write-ata-disk` synchronously writes a whole number of sectors to
+disk.
 
 Mu doesn't currently support asynchronous transfers to or from a disk.