shithub: zelda3

ref: 9d5a90cd6630e5be07a0a1523643eee00fd51d05
dir: /tracing.h/

View raw version

#ifndef TRACING_H
#define TRACING_H


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <stdbool.h>

#include "snes/snes.h"

void getProcessorStateCpu(Snes* snes, char* line);
void getProcessorStateSpc(Apu* apu, char* line);

#endif