AluVM / rust-aluvm

Rust implementation of AluVM (RISC functional machine)
https://docs.rs/aluvm
Apache License 2.0
59 stars 22 forks source link

Make put mnemonic consistent #75

Closed dr-orlovsky closed 1 year ago

dr-orlovsky commented 1 year ago

Currently put mnemonic is used for both putting numbers and strings to registers. However, these two commands have different macro and display implementations: number format lists the literal first, while the string version puts the string literal as the last argument. This should be fixed.