From d70f6b375b397bbdbe1e8c808c30a2d8958bf862 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Thu, 30 Nov 2017 23:19:17 +0000 Subject: [PATCH] Ensure each header file has a newline on its own at the end of each file. Signed-off-by: Adrian Conlon --- inc/Bus.h | 2 +- inc/EventArgs.h | 2 +- inc/InputOutput.h | 2 +- inc/IntelProcessor.h | 2 +- inc/Memory.h | 2 +- inc/Processor.h | 2 +- inc/Register.h | 2 +- inc/Rom.h | 2 +- inc/Signal.h | 2 +- inc/TestHarness.h | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/inc/Bus.h b/inc/Bus.h index 76e3031..3d016d6 100644 --- a/inc/Bus.h +++ b/inc/Bus.h @@ -41,4 +41,4 @@ namespace EightBit { register16_t m_address{ { 0xff, 0xff } }; uint8_t m_temporary = 0xff; // Used to simulate ROM }; -} \ No newline at end of file +} diff --git a/inc/EventArgs.h b/inc/EventArgs.h index 88d2c71..8fe5ffd 100644 --- a/inc/EventArgs.h +++ b/inc/EventArgs.h @@ -8,4 +8,4 @@ namespace EightBit { public: static EventArgs& empty() { return m_empty; } }; -} \ No newline at end of file +} diff --git a/inc/InputOutput.h b/inc/InputOutput.h index 3fb9747..80aedeb 100644 --- a/inc/InputOutput.h +++ b/inc/InputOutput.h @@ -36,4 +36,4 @@ namespace EightBit { std::array m_input; std::array m_output; }; -} \ No newline at end of file +} diff --git a/inc/IntelProcessor.h b/inc/IntelProcessor.h index 50b8b5c..db36e3a 100644 --- a/inc/IntelProcessor.h +++ b/inc/IntelProcessor.h @@ -175,4 +175,4 @@ namespace EightBit { std::array m_decodedOpcodes; register16_t m_sp = { { 0xff, 0xff } }; }; -} \ No newline at end of file +} diff --git a/inc/Memory.h b/inc/Memory.h index 83921da..265c115 100644 --- a/inc/Memory.h +++ b/inc/Memory.h @@ -40,4 +40,4 @@ namespace EightBit { int limit, int maximumSize); }; -} \ No newline at end of file +} diff --git a/inc/Processor.h b/inc/Processor.h index 46a8d13..46c0b12 100644 --- a/inc/Processor.h +++ b/inc/Processor.h @@ -147,4 +147,4 @@ namespace EightBit { bool m_halted = false; bool m_power = false; }; -} \ No newline at end of file +} diff --git a/inc/Register.h b/inc/Register.h index 81c5056..017ee17 100644 --- a/inc/Register.h +++ b/inc/Register.h @@ -31,4 +31,4 @@ namespace EightBit { }; uint16_t word; } register16_t; -} \ No newline at end of file +} diff --git a/inc/Rom.h b/inc/Rom.h index a33e8f5..c2d2506 100644 --- a/inc/Rom.h +++ b/inc/Rom.h @@ -18,4 +18,4 @@ namespace EightBit { return BYTES()[address]; } }; -} \ No newline at end of file +} diff --git a/inc/Signal.h b/inc/Signal.h index 08c596a..509f03a 100644 --- a/inc/Signal.h +++ b/inc/Signal.h @@ -22,4 +22,4 @@ namespace EightBit { delegate(e); } }; -} \ No newline at end of file +} diff --git a/inc/TestHarness.h b/inc/TestHarness.h index c26a3ed..4138a38 100644 --- a/inc/TestHarness.h +++ b/inc/TestHarness.h @@ -95,4 +95,4 @@ namespace EightBit { return __rdtsc(); } }; -} \ No newline at end of file +}