shithub: zelda3

ref: c1c8c7f8300ca36c2e482eb116e2095335cc03a0
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