shithub: zelda3

ref: 8f31584de42c033b91c2426775cae17090f0e5e3
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