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.__archive__
parent
41e92d8a7a
commit
2c35b35e11
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#ifndef ARM966E_H
|
||||
#define ARM966E_H
|
||||
|
||||
#include "arm9tdmi.h"
|
||||
#include <target/arm9tdmi.h>
|
||||
|
||||
#define ARM966E_COMMON_MAGIC 0x20f920f9
|
||||
|
||||
|
|
Loading…
Reference in New Issue