Skip to content

Commit

Permalink
docs: update docs and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Fumuran committed Oct 24, 2023
1 parent 98e4787 commit 01c8f07
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 45 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#### Assembly
- Expanded capabilities of the `debug` decorator. Added `debug.mem` and `debug.local` variations.
- Introduced the `emit.<event_id>` assembly instruction (#1119).
- All `checked` versions of the u32 instructions were removed. All `unchecked` versions were renamed: this mode specification was removed from their titles.

#### Stdlib
- Introduced `std::utils` module with `is_empty_word` procedure. Refactored `std::collections::smt`
Expand Down
6 changes: 3 additions & 3 deletions docs/src/tools/repl.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ The `!program` command prints out the entire Miden program being executed. E.g.,
```
>> push.1.2.3.4
>> repeat.16 pow2 end
>> u32checked_add
>> u32wrapping_add
>> !program
begin
push.1.2.3.4
repeat.16 pow2 end
u32checked_add
u32wrapping_add
end
```

Expand All @@ -64,7 +64,7 @@ The `!stack` command prints out the state of the stack at the last executed inst
```
>> push.1 push.2 push.3 push.4 push.5
>> exp
>> u32checked_mul
>> u32wrapping_mul
>> swap
>> eq.2
>> assert
Expand Down
Loading

0 comments on commit 01c8f07

Please sign in to comment.