-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDMA.h
57 lines (42 loc) · 1.04 KB
/
DMA.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// DMA.h
// The Omega Project
// https://github.com/h5n1xp/Omega
//
// Created by Matt Parsons on 02/02/2019.
// Copyright © 2019 Matt Parsons. All rights reserved.
// <[email protected]>
//
//
// This Source Code Form is subject to the terms of the
// Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef DMA_h
#define DMA_h
#include <stdio.h>
void dma_execute();
int copperExecute();
int blitterExecute();
void waitFreeSlot();
void evenCycle(void);
void oddCycle(void);
void dramCycle(void);
void diskCycle(void);
void audio0Cycle(void);
void audio1Cycle(void);
void audio2Cycle(void);
void audio3Cycle(void);
void spriteCycle(void);
void plane4(void);
void plane6(void);
void plane2(void);
void plane3(void);
void plane5(void);
void loresPlane1(void);
void hiresPlane1(void);
void drawBlank();
void displayLineReset(void);
void setDisplayMode(int); // 0 = lores, 1 = highres
int blitterCopyCycle();
int blitterLineCycle();
#endif /* DMA_h */