forked from BitJag/atari_jaguar_240p_test_suite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.h
More file actions
executable file
·54 lines (42 loc) · 906 Bytes
/
Copy pathmain.h
File metadata and controls
executable file
·54 lines (42 loc) · 906 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef MAIN
#define MAIN
#include <jagdefs.h>
#include <jagtypes.h>
#include <stdlib.h>
#include <interrupt.h>
#include <display.h>
#include <sprite.h>
#include <collision.h>
#include <joypad.h>
#include <screen.h>
#include <blit.h>
#include <console.h>
#include <fb2d.h>
#include <lz77.h>
#include <sound.h>
#include "common_assets.h"
#include "patterns.h"
#include "tests.h"
#include "extra_tests.h"
#include "controller_test.h"
#include "eeprom_test.h"
#include "sprite_stress.h"
extern uint8_t back;
phrase *backData;
sprite *backSprite;
extern uint8_t SD;
phrase *SDData;
sprite *SDSprite;
void loadMainMenuLines(int highlightLine);
void testPatternMenu();
void morePatternsMenu();
void VideoTestsMenu();
void AudioTestsMenu();
void HardwareMenu();
void ScreenSaversMenu();
void drawCredits();
//audio assets
// extern uint8_t song;
// char *songData;
// #define SONGSIZE 446572
#endif