Skip to content

Commit 2bd6fd6

Browse files
committed
Add missing EOF markers.
These let me know if a file has been accidentally truncated somewhere.
1 parent aa582da commit 2bd6fd6

File tree

10 files changed

+20
-0
lines changed

10 files changed

+20
-0
lines changed

build.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,5 @@ fn main() {
3131
println!("cargo:rustc-link-lib=dylib=msvcrt");
3232
}
3333
}
34+
35+
// End of file

src/bin/flash0002.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@
1414
#[link_section = ".entry_point"]
1515
#[used]
1616
pub static ENTRY_POINT_ADDR: extern "C" fn(&neotron_common_bios::Api) -> ! = neotron_os::os_main;
17+
18+
// End of file

src/bin/flash0802.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@
1414
#[link_section = ".entry_point"]
1515
#[used]
1616
pub static ENTRY_POINT_ADDR: extern "C" fn(&neotron_common_bios::Api) -> ! = neotron_os::os_main;
17+
18+
// End of file

src/bin/flash1002.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@
1414
#[link_section = ".entry_point"]
1515
#[used]
1616
pub static ENTRY_POINT_ADDR: extern "C" fn(&neotron_common_bios::Api) -> ! = neotron_os::os_main;
17+
18+
// End of file

src/commands/config.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,5 @@ fn command(_menu: &menu::Menu<Ctx>, _item: &menu::Item<Ctx>, args: &[&str], ctx:
106106
}
107107
}
108108
}
109+
110+
// End of file

src/commands/input.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ fn kbtest(_menu: &menu::Menu<Ctx>, _item: &menu::Item<Ctx>, _args: &[&str], _ctx
4242
}
4343
osprintln!("Finished.");
4444
}
45+
46+
// End of file

src/commands/sound.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,3 +190,5 @@ fn play(_menu: &menu::Menu<Ctx>, _item: &menu::Item<Ctx>, args: &[&str], ctx: &m
190190
osprintln!("\nError during playback: {:?}", e);
191191
}
192192
}
193+
194+
// End of file

src/commands/timedate.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@ fn date(_menu: &menu::Menu<Ctx>, item: &menu::Item<Ctx>, args: &[&str], _ctx: &m
4141
time.nanosecond()
4242
);
4343
}
44+
45+
// End of file

src/config.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,5 @@ impl core::default::Default for Config {
8888
}
8989
}
9090
}
91+
92+
// End of file

src/fs.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,5 @@ impl embedded_sdmmc::TimeSource for BiosTime {
8080
}
8181
}
8282
}
83+
84+
// End of file

0 commit comments

Comments
 (0)