10 lines
123 B
C++
10 lines
123 B
C++
#pragma once
|
|
#include <stdint.h>
|
|
|
|
namespace m6502
|
|
{
|
|
void reset();
|
|
void interrupt(uint8_t type);
|
|
void tick();
|
|
}
|