aboutsummaryrefslogtreecommitdiff
path: root/src/interp/sys-utility.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/sys-utility.boot')
-rw-r--r--src/interp/sys-utility.boot6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interp/sys-utility.boot b/src/interp/sys-utility.boot
index 510f5080..aee7a0be 100644
--- a/src/interp/sys-utility.boot
+++ b/src/interp/sys-utility.boot
@@ -75,6 +75,12 @@ getVMType d ==
#rest d' > 2 => "%Shell"
"%Pair"
IndexedList => "%List"
+ Int8 => ["SIGNED-BYTE", 8]
+ Int16 => ["SIGNED-BYTE", 16]
+ Int32 => ["SIGNED-BYTE", 32]
+ UInt8 => ["UNSIGNED-BYTE", 8]
+ UInt16 => ["UNSIGNED-BYTE", 16]
+ UInt32 => ["UNSIGNED-BYTE", 32]
otherwise => "%Thing" -- good enough, for now.
--%