summaryrefslogtreecommitdiff
path: root/src/program_memory.rs
Commit message (Collapse)AuthorAge
* Partially restructure the libraryBen Bridle2025-03-25
| | | | | This also changes bit-shifting semantics, shifting left and then right instead of the other way around.
* Make Bedrock parametric over devicesBen Bridle2024-09-30
The core Bedrock struct is now parametric over individual Device structs, rather than over a single DeviceBus. This change was made so that devices can be implemented separately to one another. The implementation of the evaluate method has also been changed to make it potentially slightly more efficient, by replacing pop-then-push combinations with get operations.