[Vm-dev] [OpenSmalltalk/opensmalltalk-vm] Incorrect literal Character encoding/decoding in SistaV1 bytecode set (Issue #618)

Eliot Miranda notifications at github.com
Thu Mar 10 18:58:54 UTC 2022


I think both image and VM have to be fixed.  This was a slip by me; apologies.  Clearly, the bytecode is wrongly specified.  Instead of taking the signed extension B it should take the unsigned extension A.  This was a copy-paste error copying the push integer bytecode.  So instead of
```233		11101001	i i i i i i i i	Push Character #iiiiiiii (+ Extend B * 256)```
the bytecode should be
```233		11101001	i i i i i i i i	Push Character #iiiiiiii (+ Extend A * 256)```.
I will make both of these changes.

-- 
Reply to this email directly or view it on GitHub:
https://github.com/OpenSmalltalk/opensmalltalk-vm/issues/618#issuecomment-1064390692
You are receiving this because you are subscribed to this thread.

Message ID: <OpenSmalltalk/opensmalltalk-vm/issues/618/1064390692 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/vm-dev/attachments/20220310/3a1d638d/attachment.html>


More information about the Vm-dev mailing list