mirror of
https://github.com/wavemotion-dave/A7800DS.git
synced 2025-04-02 10:42:14 -04:00
12 lines
199 B
C
12 lines
199 B
C
#ifndef SHARED_H
|
|
#define SHARED_H
|
|
|
|
#include <nds.h>
|
|
|
|
//typedef unsigned char byte;
|
|
typedef unsigned short word;
|
|
typedef unsigned int uint;
|
|
|
|
extern unsigned short *bufVideo; // Video buffer
|
|
|
|
#endif
|