Skip to content

Commit

Permalink
feat: add musl-libc memcpy (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctian1 authored Feb 21, 2024
1 parent 1098568 commit 2452024
Show file tree
Hide file tree
Showing 3 changed files with 782 additions and 0 deletions.
3 changes: 3 additions & 0 deletions zkvm/entrypoint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ mod zkvm {

static STACK_TOP: u32 = 0x0020_0400;

core::arch::global_asm!(include_str!("memset.s"));
core::arch::global_asm!(include_str!("memcpy.s"));

core::arch::global_asm!(
r#"
.section .text._start;
Expand Down
Loading

0 comments on commit 2452024

Please sign in to comment.