added a new macro progmem!() at the inside you can add new progmem data.

This commit is contained in:
Zenn 2023-08-07 19:18:34 +02:00
parent d9cb232cef
commit 28cbec07f8
8 changed files with 427 additions and 337 deletions

View file

@ -19,7 +19,7 @@ pub use crate::library::c::*;
pub use crate::library::eeprom::EEPROM;
pub use crate::library::sprites;
pub use crate::print::*;
pub use crate::{get_sprite_addr, get_string_addr, get_tones_addr};
pub use crate::{get_sprite_addr, get_string_addr, get_tones_addr, progmem};
use core::cmp;
pub fn constrain<T: Ord>(x: T, a: T, b: T) -> T {