Browse Source

change #include "arm9tdmi.h" to <target/arm9tdmi.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "arm9tdmi.h"

the following form should be used.

	#include <target/arm9tdmi.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
2c35b35e11
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/target/arm920t.h
  2. +1
    -1
      src/target/arm926ejs.h
  3. +1
    -1
      src/target/arm966e.h

+ 1
- 1
src/target/arm920t.h View File

@@ -20,7 +20,7 @@
#ifndef ARM920T_H
#define ARM920T_H

#include "arm9tdmi.h"
#include <target/arm9tdmi.h>
#include "armv4_5_mmu.h"

#define ARM920T_COMMON_MAGIC 0xa920a920


+ 1
- 1
src/target/arm926ejs.h View File

@@ -20,7 +20,7 @@
#ifndef ARM926EJS_H
#define ARM926EJS_H

#include "arm9tdmi.h"
#include <target/arm9tdmi.h>
#include "armv4_5_mmu.h"

#define ARM926EJS_COMMON_MAGIC 0xa926a926


+ 1
- 1
src/target/arm966e.h View File

@@ -23,7 +23,7 @@
#ifndef ARM966E_H
#define ARM966E_H

#include "arm9tdmi.h"
#include <target/arm9tdmi.h>

#define ARM966E_COMMON_MAGIC 0x20f920f9



Loading…
Cancel
Save