-
Notifications
You must be signed in to change notification settings - Fork 39
/
boot.h
43 lines (31 loc) · 932 Bytes
/
boot.h
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
// boot.h
// bootscreen functions
// 2014, [email protected]
#ifndef __BOOT_H__
#define __BOOT_H__
//// defines ////
#define SCREEN_WIDTH 640
#define SCREEN_HEIGHT 256
#define SCREEN_SIZE SCREEN_WIDTH * SCREEN_HEIGHT
#define SCREEN_MEM_SIZE 2*SCREEN_SIZE/8
#define SCREEN_ADDRESS 0x80000
#define SCREEN_BPL1 0x80000
#define SCREEN_BPL2 0x85000
#define LOGO_WIDTH 208
#define LOGO_HEIGHT 32
#define LOGO_OFFSET (64*SCREEN_WIDTH/8+24)
#define LOGO_LSKIP (SCREEN_WIDTH-LOGO_WIDTH)/8
#define LOGO_SIZE 0x680
#define LOGO_FILE "MINIMIG.ART"
#define BALL_SIZE 0x4000
#define BALL_ADDRESS 0x8a000
#define BALL_FILE "MINIMIG.BAL"
#define COPPER_SIZE 0x35c
#define COPPER_ADDRESS 0x8e680
#define COPPER_FILE "MINIMIG.COP"
#define BLITS 64
//// functions ////
void BootInit();
void BootPrintEx(char * str);
void BootHome();
#endif // __BOOT_H__