summaryrefslogtreecommitdiff
path: root/include/memoire.h
blob: 075d4a493a4367bb33c00879cf2417ccde65d4bc (plain)
1
2
3
4
5
6
7
8
9
#ifndef __MEMOIRE_H__
#define __MEMOIRE_H__
#include "types.h"
extern Uint32 *memoire_principale;
Uint32 LD(Uint32 offset);
void ST(Uint32 offset, Uint32 valeur);
void InitMemoire(void);
void FlushMemoire(void);
#endif