mirror of
https://github.com/jborza/emu6502.git
synced 2024-11-18 04:08:33 +00:00
6 lines
154 B
C
6 lines
154 B
C
#pragma once
|
|
#include "types.h"
|
|
#include "state.h"
|
|
void run_tests();
|
|
void print_memory(State6502* state, word offset);
|
|
void print_state(State6502* state); |