shithub: zelda3

ref: c487a04d8f02619ba3a34417638e51ade37a444f
dir: /snes/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.h"

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

#endif