Skip to content

Commit

Permalink
docs: Fixed broken link (#1479)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsquaredleland committed Sep 4, 2024
2 parents 98d100c + 81c820a commit c3267d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/writing-programs/precompiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Inside the zkVM, precompiles are exposed as system calls executed through the `e
Each precompile has a unique system call number and implements an interface for the computation.

SP1 also has been designed specifically to make it easy for external contributors to create and extend the zkVM with their own precompiles.
To learn more about this, you can look at implementations of existing precompiles in the [precompiles](https://github.com/succinctlabs/sp1/tree/main/core/src/syscall/precompiles) folder. More documentation on this will be coming soon.
To learn more about this, you can look at implementations of existing precompiles in the [precompiles](https://github.com/succinctlabs/sp1/tree/main/crates/core/executor/src/events/precompiles) folder. More documentation on this will be coming soon.

**To use precompiles, we typically recommend you interact with them through [patches](./patched-crates.md), which are crates modified
to use these precompiles under the hood, without requiring you to call system calls directly.**
Expand All @@ -20,4 +20,4 @@ Here is a list of all available system calls & precompiles.

```rust,noplayground
{{#include ../../zkvm/lib/src/lib.rs}}
```
```

0 comments on commit c3267d6

Please sign in to comment.