From 8c9ae780408cfb779fda29cb6e21fbb916ddd1d5 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Sat, 16 Apr 2022 21:04:39 -0500 Subject: [PATCH] Fix file endings --- sw/exec.c | 2 +- sw/exec.h | 2 +- sw/fat.c | 2 +- sw/fat.h | 2 +- sw/o65.c | 2 +- sw/o65.h | 2 -- sw/sd_card.h | 2 +- 7 files changed, 6 insertions(+), 8 deletions(-) diff --git a/sw/exec.c b/sw/exec.c index 911d22a..8e3a622 100644 --- a/sw/exec.c +++ b/sw/exec.c @@ -58,4 +58,4 @@ void exec(char* filename) { } -} \ No newline at end of file +} diff --git a/sw/exec.h b/sw/exec.h index 37bd21a..9ed3941 100644 --- a/sw/exec.h +++ b/sw/exec.h @@ -3,4 +3,4 @@ void exec(char* filename); -#endif \ No newline at end of file +#endif diff --git a/sw/fat.c b/sw/fat.c index eadeb96..5fb947f 100644 --- a/sw/fat.c +++ b/sw/fat.c @@ -70,4 +70,4 @@ void fat_read(char* filename, void* buf) { cluster = ((uint32_t)dos_dentry->first_cluster_h << 16) + dos_dentry->first_cluster_l; sd_readblock(data_region_start + (cluster - 2) * 8, buf); -} \ No newline at end of file +} diff --git a/sw/fat.h b/sw/fat.h index 5e9ee54..bf374ab 100644 --- a/sw/fat.h +++ b/sw/fat.h @@ -108,4 +108,4 @@ void fat_print_pbp_info(ebpb_t* epbp); void fat_init(); void fat_read(char* filename, void* buf); -#endif \ No newline at end of file +#endif diff --git a/sw/o65.c b/sw/o65.c index cc908a9..9e76dc0 100644 --- a/sw/o65.c +++ b/sw/o65.c @@ -25,4 +25,4 @@ void o65_print_option(o65_opt_t* opt) { cprintf("%x", opt->data[0]); } cprintf("\n\n"); -} \ No newline at end of file +} diff --git a/sw/o65.h b/sw/o65.h index 88d1845..719305c 100644 --- a/sw/o65.h +++ b/sw/o65.h @@ -63,5 +63,3 @@ typedef struct { void o65_print_option(o65_opt_t* opt); #endif - - diff --git a/sw/sd_card.h b/sw/sd_card.h index b28d75a..7e3cb00 100644 --- a/sw/sd_card.h +++ b/sw/sd_card.h @@ -15,4 +15,4 @@ void sd_card_resp(uint32_t* resp); uint8_t sd_card_read_byte(); void sd_card_wait_for_data(); -#endif \ No newline at end of file +#endif