mirror of
https://github.com/joel16/uofw.git
synced 2024-11-23 11:39:50 +00:00
25 lines
462 B
C
25 lines
462 B
C
/* Copyright (C) 2011, 2012 The uOFW team
|
|
See the file COPYING for copying permission.
|
|
*/
|
|
|
|
/* Common file for module implementations */
|
|
|
|
#ifndef COMMON_IMP_H
|
|
#define COMMON_IMP_H
|
|
|
|
#define COMMON_INCLUDED
|
|
|
|
#include "common/types.h"
|
|
|
|
#include "common/cop0.h"
|
|
#include "common/debug.h"
|
|
#include "common/errors.h"
|
|
#include "common/hardware.h"
|
|
#include "common/inline.h"
|
|
#include "common/memory.h"
|
|
#include "common/module.h"
|
|
#include "common/registers.h"
|
|
|
|
#endif
|
|
|