13 lines
130 B
C
13 lines
130 B
C
#ifndef __CHIP8_H
|
|
#define __CHIP8_H
|
|
|
|
#include "config.h"
|
|
#include "mem.h"
|
|
|
|
struct chip8
|
|
{
|
|
struct chip8_memory memory;
|
|
};
|
|
|
|
#endif
|