Improve consistency for including

This commit is contained in:
madmaurice 2023-08-29 23:11:31 +02:00
parent c39a680293
commit 517577d546
10 changed files with 17 additions and 16 deletions

View file

@ -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")
{

View file

@ -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")
{

View file

@ -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")

View file

@ -1,5 +1,6 @@
#include "doctest.h"
#include "memory/ram.h"
#include <memory/ram.h>
TEST_SUITE_BEGIN("memory/ram");