Improve consistency for including
This commit is contained in:
parent
c39a680293
commit
517577d546
10 changed files with 17 additions and 16 deletions
|
@ -3,7 +3,7 @@
|
|||
#include <vector>
|
||||
#include <optional>
|
||||
|
||||
#include "mem_device.h"
|
||||
#include <memory/mem_device.h>
|
||||
|
||||
class Bus : public Mem_device {
|
||||
private:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
#include <types.h>
|
||||
|
||||
class Range {
|
||||
private:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "ram.h"
|
||||
#include <memory/ram.h>
|
||||
#include <cstring>
|
||||
|
||||
RAM::RAM(u16 size) : size(size), readonly(false) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "mem_device.h"
|
||||
#include <memory/mem_device.h>
|
||||
|
||||
class RAM : public Mem_device {
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue