Add credits to rp-hal

This commit is contained in:
Dario Nieuwenhuis 2022-09-26 11:57:26 +02:00
parent 2e7916c5fe
commit fa7781c48d
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,8 @@
#![macro_use]
// Credit: taken from `rp-hal` (also licensed Apache+MIT)
// https://github.com/rp-rs/rp-hal/blob/main/rp2040-hal/src/intrinsics.rs
/// Generate a series of aliases for an intrinsic function.
macro_rules! intrinsics_aliases {
(

View File

@ -8,6 +8,9 @@
//! > functionality that would otherwise have to take up space in most user
//! > binaries.
// Credit: taken from `rp-hal` (also licensed Apache+MIT)
// https://github.com/rp-rs/rp-hal/blob/main/rp2040-hal/src/rom_data.rs
/// A bootrom function table code.
pub type RomFnTableCode = [u8; 2];