Browse code

Updating the VBA-M code to revision 1231.

Naram Qashat authored on 2014/09/08 12:20:28
Showing 1 changed files
... ...
@@ -1,28 +1,25 @@
1
-#ifndef BIOS_H
2
-#define BIOS_H
1
+#pragma once
3 2
 
4
-extern void BIOS_ArcTan();
5
-extern void BIOS_ArcTan2();
6
-extern void BIOS_BitUnPack();
7
-extern void BIOS_GetBiosChecksum();
8
-extern void BIOS_BgAffineSet();
9
-extern void BIOS_CpuSet();
10
-extern void BIOS_CpuFastSet();
11
-extern void BIOS_Diff8bitUnFilterWram();
12
-extern void BIOS_Diff8bitUnFilterVram();
13
-extern void BIOS_Diff16bitUnFilter();
14
-extern void BIOS_Div();
15
-extern void BIOS_HuffUnComp();
16
-extern void BIOS_LZ77UnCompVram();
17
-extern void BIOS_LZ77UnCompWram();
18
-extern void BIOS_ObjAffineSet();
19
-extern void BIOS_RegisterRamReset();
20
-extern void BIOS_RegisterRamReset(uint32_t);
21
-extern void BIOS_RLUnCompVram();
22
-extern void BIOS_RLUnCompWram();
23
-extern void BIOS_SoftReset();
24
-extern void BIOS_Sqrt();
25
-extern void BIOS_MidiKey2Freq();
26
-extern void BIOS_SndDriverJmpTableCopy();
27
-
28
-#endif // BIOS_H
3
+void BIOS_ArcTan();
4
+void BIOS_ArcTan2();
5
+void BIOS_BitUnPack();
6
+void BIOS_GetBiosChecksum();
7
+void BIOS_BgAffineSet();
8
+void BIOS_CpuSet();
9
+void BIOS_CpuFastSet();
10
+void BIOS_Diff8bitUnFilterWram();
11
+void BIOS_Diff8bitUnFilterVram();
12
+void BIOS_Diff16bitUnFilter();
13
+void BIOS_Div();
14
+void BIOS_HuffUnComp();
15
+void BIOS_LZ77UnCompVram();
16
+void BIOS_LZ77UnCompWram();
17
+void BIOS_ObjAffineSet();
18
+void BIOS_RegisterRamReset();
19
+void BIOS_RegisterRamReset(uint32_t);
20
+void BIOS_RLUnCompVram();
21
+void BIOS_RLUnCompWram();
22
+void BIOS_SoftReset();
23
+void BIOS_Sqrt();
24
+void BIOS_MidiKey2Freq();
25
+void BIOS_SndDriverJmpTableCopy();
Browse code

[GSF] Massive code cleanup.

(As an aside, blargg's code style makes me go blarg myself.)

Naram Qashat authored on 2013/05/14 01:07:18
Showing 1 changed files
... ...
@@ -12,7 +12,6 @@ extern void BIOS_Diff8bitUnFilterWram();
12 12
 extern void BIOS_Diff8bitUnFilterVram();
13 13
 extern void BIOS_Diff16bitUnFilter();
14 14
 extern void BIOS_Div();
15
-extern void BIOS_DivARM();
16 15
 extern void BIOS_HuffUnComp();
17 16
 extern void BIOS_LZ77UnCompVram();
18 17
 extern void BIOS_LZ77UnCompWram();
Browse code

[GSF] Cleanup, a tiny bit of making sure it was like viogsf, also used the standard integer types and not VBA-M's typedefs.

Naram Qashat authored on 2013/05/10 17:45:36
Showing 1 changed files
... ...
@@ -18,7 +18,7 @@ extern void BIOS_LZ77UnCompVram();
18 18
 extern void BIOS_LZ77UnCompWram();
19 19
 extern void BIOS_ObjAffineSet();
20 20
 extern void BIOS_RegisterRamReset();
21
-extern void BIOS_RegisterRamReset(u32);
21
+extern void BIOS_RegisterRamReset(uint32_t);
22 22
 extern void BIOS_RLUnCompVram();
23 23
 extern void BIOS_RLUnCompWram();
24 24
 extern void BIOS_SoftReset();
Browse code

Import actual code.

Naram Qashat authored on 2013/03/26 02:41:19
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,29 @@
1
+#ifndef BIOS_H
2
+#define BIOS_H
3
+
4
+extern void BIOS_ArcTan();
5
+extern void BIOS_ArcTan2();
6
+extern void BIOS_BitUnPack();
7
+extern void BIOS_GetBiosChecksum();
8
+extern void BIOS_BgAffineSet();
9
+extern void BIOS_CpuSet();
10
+extern void BIOS_CpuFastSet();
11
+extern void BIOS_Diff8bitUnFilterWram();
12
+extern void BIOS_Diff8bitUnFilterVram();
13
+extern void BIOS_Diff16bitUnFilter();
14
+extern void BIOS_Div();
15
+extern void BIOS_DivARM();
16
+extern void BIOS_HuffUnComp();
17
+extern void BIOS_LZ77UnCompVram();
18
+extern void BIOS_LZ77UnCompWram();
19
+extern void BIOS_ObjAffineSet();
20
+extern void BIOS_RegisterRamReset();
21
+extern void BIOS_RegisterRamReset(u32);
22
+extern void BIOS_RLUnCompVram();
23
+extern void BIOS_RLUnCompWram();
24
+extern void BIOS_SoftReset();
25
+extern void BIOS_Sqrt();
26
+extern void BIOS_MidiKey2Freq();
27
+extern void BIOS_SndDriverJmpTableCopy();
28
+
29
+#endif // BIOS_H