Browse Source

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

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

	#include "arm7tdmi.h"

the following form should be used.

	#include <target/arm7tdmi.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
447f0896dd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/target/arm720t.h

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

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

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

#define ARM720T_COMMON_MAGIC 0xa720a720


Loading…
Cancel
Save