You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
The reason that the disassembler has these limits is because that is what the instruction encoding supports and what a compiler could produce. The verifier then narrows it down to what the vm actually supports.
Hi,
The register checking of assembler should be consistent with that of verifier
!(0..16).contains(&dst)
->dst < 0 || dst > 11
or ...dst < 0 || src >= 16
->src < 0 || src > 10
The text was updated successfully, but these errors were encountered: