Skip to content

Commit

Permalink
hub75_i8080: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
liebman committed Jul 6, 2024
1 parent 4faeca0 commit d72a4c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/src/bin/hub75_i8080.rs
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,9 @@ extern "C" {
#[main]
async fn main(spawner: Spawner) {
println!("Init!");
println!("stack size: {}", unsafe{core::ptr::addr_of!(_stack_start_cpu0).offset_from(core::ptr::addr_of!(_stack_end_cpu0))});
println!("stack size: {}", unsafe {
core::ptr::addr_of!(_stack_start_cpu0).offset_from(core::ptr::addr_of!(_stack_end_cpu0))
});
println!("FRAMEBUFFER_SIZE: {}", FRAMEBUFFER_SIZE);
println!("DMA_ROW_SIZE: {}", DMA_ROW_SIZE);
println!("DMA_FRAME_SIZE: {}", DMA_FRAME_SIZE);
Expand Down

0 comments on commit d72a4c4

Please sign in to comment.