diff options
author | Tauwasser <Tauwasser@tauwasser.eu> | 2018-06-02 00:28:59 +0200 |
---|---|---|
committer | Tauwasser <Tauwasser@tauwasser.eu> | 2018-06-02 00:28:59 +0200 |
commit | 2e234f92057f5ea3e987f243e28627c89b4f4036 (patch) | |
tree | 4b9bfe5753fd34354140f0504c8a237799198e67 | |
parent | 46435be6a1840eff9038c9e5a300f92006bff321 (diff) |
macros: fix missing newlines at eof
Signed-off-by: Tauwasser <Tauwasser@tauwasser.eu>
-rw-r--r-- | constants.asm | 2 | ||||
-rw-r--r-- | constants/misc_constants.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/constants.asm b/constants.asm index 5d58985..f0a0c2c 100644 --- a/constants.asm +++ b/constants.asm @@ -20,4 +20,4 @@ INCLUDE "constants/palette_constants.asm" INCLUDE "constants/serial_constants.asm" -INCLUDE "constants/misc_constants.asm"
\ No newline at end of file +INCLUDE "constants/misc_constants.asm" diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 19deb8e..d01de98 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -21,4 +21,4 @@ D_UP EQU 1 << D_UP_F D_DOWN EQU 1 << D_DOWN_F BUTTONS EQU A_BUTTON | B_BUTTON | SELECT | START -D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN
\ No newline at end of file +D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN |