mirror of
https://github.com/snesrev/zelda3.git
synced 2025-12-23 21:04:51 -05:00
18 lines
267 B
C
18 lines
267 B
C
|
|
#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
|