Skip to content

Commit

Permalink
put out small copy loop back into the crate source tree.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokathor committed May 27, 2024
1 parent 0339c3b commit 0498d6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ pub mod bios;
pub mod dma;
pub mod gba_cell;
pub mod gba_fixed;
pub mod mem;
pub mod mmio;
pub mod panic_handlers;
pub mod per_project_setup;
Expand Down
2 changes: 1 addition & 1 deletion src/mem/copy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#[inline]
#[link_section = ".iwram.__aeabi_memcpy1"]
#[cfg_attr(feature = "no_mangle_memcpy", no_mangle)]
#[cfg_addr(feature = "on_gba", instruction_set(arm::a32))]
#[cfg_attr(feature = "on_gba", instruction_set(arm::a32))]
pub unsafe extern "C" fn __aeabi_memcpy1(
dest: *mut u8, src: *const u8, byte_count: usize,
) {
Expand Down

0 comments on commit 0498d6c

Please sign in to comment.