2025-02-08 18:23:13 -05:00

15 lines
188 B
C

#ifndef __CHIP8_H
#define __CHIP8_H
#include "config.h"
#include "mem.h"
#include "registers.h"
struct chip8
{
struct chip8_memory memory;
struct chip8_registers registers;
};
#endif