From ed9f2e85f8a378e8be3775cd02729d000dca96b2 Mon Sep 17 00:00:00 2001 From: archshift Date: Sun, 10 May 2015 01:00:50 -0700 Subject: [PATCH] Ensure newlines are at the end of all files --- source/common.h | 2 +- source/delay.h | 2 +- source/delay.s | 2 +- source/gamecart/protocol_ctr.c | 2 +- source/gamecart/protocol_ctr.h | 2 +- source/gamecart/protocol_ntr.c | 2 +- source/gamecart/protocol_ntr.h | 2 +- source/misc.h | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/source/common.h b/source/common.h index 2eb7095..0a7b7b2 100644 --- a/source/common.h +++ b/source/common.h @@ -34,4 +34,4 @@ inline char* strlower(const char* str) { for (int i = 0; i < strlen(str); ++i) buffer[i] = tolower((unsigned)str[i]); return buffer; -} \ No newline at end of file +} diff --git a/source/delay.h b/source/delay.h index d7aac6b..f2a8021 100644 --- a/source/delay.h +++ b/source/delay.h @@ -2,4 +2,4 @@ #include "common.h" -void ioDelay(u32 us); \ No newline at end of file +void ioDelay(u32 us); diff --git a/source/delay.s b/source/delay.s index 39f5873..d010330 100644 --- a/source/delay.s +++ b/source/delay.s @@ -6,4 +6,4 @@ ioDelay: subs r0, #1 bgt ioDelay - bx lr \ No newline at end of file + bx lr diff --git a/source/gamecart/protocol_ctr.c b/source/gamecart/protocol_ctr.c index 422d854..477f5b1 100644 --- a/source/gamecart/protocol_ctr.c +++ b/source/gamecart/protocol_ctr.c @@ -139,4 +139,4 @@ void CTR_SendCommand(u32 command[4], u32 pageSize, u32 blocks, u32 latency, void // wait rom cs high do { cardCtrl = REG_CTRCARDCNT; } while( cardCtrl & CTRCARD_BUSY ); //lastCmd[0] = command[0];lastCmd[1] = command[1]; -} \ No newline at end of file +} diff --git a/source/gamecart/protocol_ctr.h b/source/gamecart/protocol_ctr.h index 24e666e..d490e3e 100644 --- a/source/gamecart/protocol_ctr.h +++ b/source/gamecart/protocol_ctr.h @@ -5,4 +5,4 @@ void CTR_SetSecKey(u32 value); void CTR_SetSecSeed(u32 *seed, bool flag); -void CTR_SendCommand(u32 command[4], u32 pageSize, u32 blocks, u32 latency, void* buffer); \ No newline at end of file +void CTR_SendCommand(u32 command[4], u32 pageSize, u32 blocks, u32 latency, void* buffer); diff --git a/source/gamecart/protocol_ntr.c b/source/gamecart/protocol_ntr.c index e383d51..adc6288 100644 --- a/source/gamecart/protocol_ntr.c +++ b/source/gamecart/protocol_ntr.c @@ -100,4 +100,4 @@ void NTR_SendCommand( u32 command[2], u32 pageSize, u32 latency, void * buffer ) // wait rom cs high do { cardCtrl = REG_NTRCARDROMCNT; } while( cardCtrl & NTRCARD_BUSY ); //lastCmd[0] = command[0];lastCmd[1] = command[1]; -} \ No newline at end of file +} diff --git a/source/gamecart/protocol_ntr.h b/source/gamecart/protocol_ntr.h index 0d5a860..bdeb0dd 100644 --- a/source/gamecart/protocol_ntr.h +++ b/source/gamecart/protocol_ntr.h @@ -2,4 +2,4 @@ #include "common.h" -void NTR_SendCommand(u32 command[2], u32 pageSize, u32 latency, void* buffer); \ No newline at end of file +void NTR_SendCommand(u32 command[2], u32 pageSize, u32 latency, void* buffer); diff --git a/source/misc.h b/source/misc.h index 419298f..6daebef 100644 --- a/source/misc.h +++ b/source/misc.h @@ -174,4 +174,4 @@ #define KEY_R 1<<8 #define KEY_L 1<<9 #define KEY_X 1<<10 -#define KEY_Y 1<<11 \ No newline at end of file +#define KEY_Y 1<<11