Improve consistency for including
This commit is contained in:
parent
c39a680293
commit
517577d546
10 changed files with 17 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
|||
#include "doctest.h"
|
||||
|
||||
#include "memory/bus.h"
|
||||
#include "memory/ram.h"
|
||||
#include <memory/bus.h>
|
||||
#include <memory/ram.h>
|
||||
|
||||
TEST_CASE("Bus can map same device twice")
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "doctest.h"
|
||||
|
||||
#include "cpu/cpu.h"
|
||||
#include "memory/ram.h"
|
||||
#include <cpu/cpu.h>
|
||||
#include <memory/ram.h>
|
||||
|
||||
TEST_CASE("EI followed by DI should not trigger interrupt")
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "doctest.h"
|
||||
|
||||
#include "cpu/cpu.h"
|
||||
#include "memory/ram.h"
|
||||
#include <cpu/cpu.h>
|
||||
#include <memory/ram.h>
|
||||
|
||||
|
||||
TEST_CASE("simple load and add")
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include "doctest.h"
|
||||
#include "memory/ram.h"
|
||||
|
||||
#include <memory/ram.h>
|
||||
|
||||
TEST_SUITE_BEGIN("memory/ram");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue