Files
nes/6502m.h

10 lines
123 B
C++

#pragma once
#include <stdint.h>
namespace m6502
{
void reset();
void interrupt(uint8_t type);
void tick();
}