about summary refs log tree commit diff stats
path: root/400.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-08 23:49:07 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-03-08 23:50:35 -0800
commitcec5ef31b3e383b7bdffe049a8c502a563f6b491 (patch)
tree9f6b410cc16991a709dc59258ae29dacd2feb98b /400.mu
parent6508ab51ccd6a41d6d1da3502359e80611d8bda3 (diff)
downloadmu-cec5ef31b3e383b7bdffe049a8c502a563f6b491.tar.gz
update vocabulary documentation
Top-level and linux/ now have separate vocabulary.md files.
Diffstat (limited to '400.mu')
-rw-r--r--400.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/400.mu b/400.mu
index 44d94213..c60f17ca 100644
--- a/400.mu
+++ b/400.mu
@@ -3,7 +3,7 @@ sig pixel-on-real-screen x: int, y: int, color: int
 sig draw-grapheme-on-real-screen g: grapheme, x: int, y: int, color: int, background-color: int
 sig cursor-position-on-real-screen -> _/eax: int, _/ecx: int
 sig set-cursor-position-on-real-screen x: int, y: int
-sig show-cursor-on-real-screen g: grapheme
+sig draw-cursor-on-real-screen g: grapheme
 
 # keyboard
 sig read-key kbd: (addr keyboard) -> _/eax: byte
@@ -26,9 +26,9 @@ sig check-next-stream-line-equal f: (addr stream byte), s: (addr array byte), ms
 sig write f: (addr stream byte), s: (addr array byte)
 sig write-stream f: (addr stream byte), s: (addr stream byte)
 sig read-byte s: (addr stream byte) -> _/eax: byte
-sig append-byte f: (addr stream byte), n: int
+sig append-byte f: (addr stream byte), n: int  # really just a byte, but I want to pass in literal numbers
 #sig to-hex-char in/eax: int -> out/eax: int
-sig append-byte-hex f: (addr stream byte), n: int
+sig append-byte-hex f: (addr stream byte), n: int  # really just a byte, but I want to pass in literal numbers
 sig write-int32-hex f: (addr stream byte), n: int
 sig write-int32-hex-bits f: (addr stream byte), n: int, bits: int
 sig hex-int? in: (addr slice) -> _/eax: boolean