Initial commit

This commit is contained in:
snesrev
2023-03-05 07:03:54 +01:00
committed by Snesrev
commit 09c1bdd874
100 changed files with 142957 additions and 0 deletions

16
src/tracing.h Normal file
View File

@@ -0,0 +1,16 @@
#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* snes, char* line);
#endif