Skip to content

Commit

Permalink
remove useless integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
KOBA789 committed Dec 29, 2023
1 parent 2be26e7 commit 73bc58a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ version = "0.1.0"
[lib]
harness = false

# needed for each integration test
[[test]]
name = "integration"
harness = false

[dependencies]
cortex-m = "0.7"
cortex-m-rt = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ use rp_pico::{
pio::{PIOExt as _, ShiftDirection},
Clock as _, Sio,
},
pac, XOSC_CRYSTAL_FREQ,
pac, XOSC_CRYSTAL_FREQ, entry,
};
use z80rp2040 as _; // global logger + panicking-behavior + memory layout

const ROM_SIZE: usize = 0x1000;
const RAM_SIZE: usize = 0x10000 - ROM_SIZE;
const ROM: &[u8] = include_bytes!("../hello.bin");

#[cortex_m_rt::entry]
#[entry]
fn entry() -> ! {
defmt::println!("Hello, world!");

Expand Down

0 comments on commit 73bc58a

Please sign in to comment.