2012-05-06 20:14:38 +00:00
|
|
|
/* Copyright (C) 2011, 2012 The uOFW team
|
|
|
|
See the file COPYING for copying permission.
|
|
|
|
*/
|
|
|
|
|
2012-08-23 13:37:32 +00:00
|
|
|
/* Common file for module implementations */
|
2012-05-06 20:14:38 +00:00
|
|
|
|
2012-08-23 13:37:32 +00:00
|
|
|
#ifndef COMMON_IMP_H
|
|
|
|
#define COMMON_IMP_H
|
|
|
|
|
|
|
|
#define COMMON_INCLUDED
|
|
|
|
|
|
|
|
#include "common/types.h"
|
2012-05-06 20:14:38 +00:00
|
|
|
|
|
|
|
#include "common/cop0.h"
|
|
|
|
#include "common/debug.h"
|
|
|
|
#include "common/errors.h"
|
2012-09-14 17:17:22 +00:00
|
|
|
#include "common/hardware.h"
|
2012-05-06 20:14:38 +00:00
|
|
|
#include "common/inline.h"
|
|
|
|
#include "common/memory.h"
|
|
|
|
#include "common/module.h"
|
|
|
|
#include "common/registers.h"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|