mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
Fixes #844 This PR adds a new machine to the STD: `WriteOnceMemory`. This can be used in our RISC-V machine for bootloader inputs (#1203). Most of the issues mentioned in the issue were fixed in the meantime or had a simple workaround (like defining `let LATCH = 1`). The only remaining issues were in the machine detection, which I fixed here. I also re-factor two existing tests.
15 lines
179 B
NASM
15 lines
179 B
NASM
mod arith;
|
|
mod array;
|
|
mod binary;
|
|
mod check;
|
|
mod convert;
|
|
mod debug;
|
|
mod field;
|
|
mod hash;
|
|
mod math;
|
|
mod memory;
|
|
mod prover;
|
|
mod shift;
|
|
mod split;
|
|
mod utils;
|
|
mod write_once_memory; |