summaryrefslogtreecommitdiff
path: root/src/usf/usf.h
blob: f3853b72a7eccd07e90048d2a37265f42fffc438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef _USF_H_
#define _USF_H_
#define _CRT_SECURE_NO_WARNINGS


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <stdint.h>



#include "usf.h"
#include "cpu.h"
#include "memory.h"

extern int8_t filename[512], title[100];
extern uint32_t cpu_running, use_interpreter, use_audiohle, is_paused, cpu_stopped, fake_seek_stopping;
extern uint32_t is_fading, fade_type, fade_time, is_seeking, seek_backwards, track_time;
extern double seek_time, play_time, rel_volume;

extern uint32_t enablecompare, enableFIFOfull;


#endif