12 lines
218 B
C++
12 lines
218 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <execute/registers.hpp>
|
|
#include <vector>
|
|
|
|
namespace Execute
|
|
{
|
|
void ExecuteInterrupt(
|
|
int const id,
|
|
Execute::Registers & registers,
|
|
std::vector<std::uint8_t> & memory);
|
|
} |