about summary refs log tree commit diff stats
path: root/subx/Readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'subx/Readme.md')
-rw-r--r--subx/Readme.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/subx/Readme.md b/subx/Readme.md
index 517515d8..c91d10ab 100644
--- a/subx/Readme.md
+++ b/subx/Readme.md
@@ -629,13 +629,19 @@ allocated memory for it.)_
 * `append-byte`: int -> stream
   - Will abort the entire program if there isn't enough room.
 * `append-byte-hex`: int -> stream
+  - textual representation in hex, no '0x' prefix
+  - Will abort the entire program if there isn't enough room.
+* `print-int32`: int -> stream
+  - textual representation in hex, including '0x' prefix
   - Will abort the entire program if there isn't enough room.
 * `write-buffered`: string -> buffered-file
 * `write-slice-buffered`: slice -> buffered-file
 * `flush`: buffered-file
 * `write-byte-buffered`: int -> buffered-file
 * `print-byte-buffered`: int -> buffered-file
-  - textual representation in hex
+  - textual representation in hex, no '0x' prefix
+* `print-int32-buffered`: int -> buffered-file
+  - textual representation in hex, including '0x' prefix
 
 #### reading from disk
 * `read`: file -> stream