Files
powdr/std/mod.asm
Georg Wiese 96893cc143 Add Write-once memory to STD (#1202)
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.
2024-03-26 18:50:30 +00:00

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;