diff src/gba/bios.h @ 19:5e8e5083da94

brought in common and gba, fixed problems with outdated Makefile.am files in both of these packages
author Robert McIntyre <rlm@mit.edu>
date Sun, 04 Mar 2012 14:33:52 -0600
parents f9f4f1b99eed
children
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/gba/bios.h	Sun Mar 04 14:33:52 2012 -0600
     1.3 @@ -0,0 +1,34 @@
     1.4 +#ifndef VBA_BIOS_H
     1.5 +#define VBA_BIOS_H
     1.6 +
     1.7 +#if _MSC_VER > 1000
     1.8 +#pragma once
     1.9 +#endif // _MSC_VER > 1000
    1.10 +
    1.11 +#include "../Port.h"
    1.12 +
    1.13 +extern void BIOS_ArcTan();
    1.14 +extern void BIOS_ArcTan2();
    1.15 +extern void BIOS_BitUnPack();
    1.16 +extern void BIOS_BgAffineSet();
    1.17 +extern void BIOS_CpuSet();
    1.18 +extern void BIOS_CpuFastSet();
    1.19 +extern void BIOS_Diff8bitUnFilterWram();
    1.20 +extern void BIOS_Diff8bitUnFilterVram();
    1.21 +extern void BIOS_Diff16bitUnFilter();
    1.22 +extern void BIOS_Div();
    1.23 +extern void BIOS_DivARM();
    1.24 +extern void BIOS_HuffUnComp();
    1.25 +extern void BIOS_LZ77UnCompVram();
    1.26 +extern void BIOS_LZ77UnCompWram();
    1.27 +extern void BIOS_ObjAffineSet();
    1.28 +extern void BIOS_RegisterRamReset();
    1.29 +extern void BIOS_RegisterRamReset(u32);
    1.30 +extern void BIOS_RLUnCompVram();
    1.31 +extern void BIOS_RLUnCompWram();
    1.32 +extern void BIOS_SoftReset();
    1.33 +extern void BIOS_Sqrt();
    1.34 +extern void BIOS_MidiKey2Freq();
    1.35 +extern void BIOS_SndDriverJmpTableCopy();
    1.36 +
    1.37 +#endif // VBA_BIOS_H