-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Normal format for
custom_insn_*
macros we have (#1193)
* Redesign `custom_insn_r` * Redesign `custom_insn_i` * Polish * Put the `core::arch::asm` invocation under the cfg(target_os = "zkvm") for less space for the wrong signature error * Address some comments * Address more
- Loading branch information
1 parent
f4307ec
commit 928ab04
Showing
22 changed files
with
652 additions
and
311 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[package] | ||
name = "openvm-custom-insn" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
syn = { version = "2.0", features = ["full"] } | ||
quote = "1.0" | ||
proc-macro2 = "1.0" | ||
|
||
[lib] | ||
proc-macro = true |
Oops, something went wrong.