// Meteor - A Nintendo Gameboy Advance emulator1// Copyright (C) 2009-2011 Philippe Daouadi2//3// This program is free software: you can redistribute it and/or modify4// it under the terms of the GNU General Public License as published by5// the Free Software Foundation, either version 3 of the License, or6// (at your option) any later version.7//8// This program is distributed in the hope that it will be useful,9// but WITHOUT ANY WARRANTY; without even the implied warranty of10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// GNU General Public License for more details.12//13// You should have received a copy of the GNU General Public License14// along with this program. If not, see <http://www.gnu.org/licenses/>.1516#ifndef __BIOS_H__17#define __BIOS_H__1819#include "ameteor.hpp"2021namespace AMeteor22{23namespace Bios24{25// Entry point26void Bios000h ();27// Software IRQ28void Bios008h ();29void Bios168h ();30// Return from IntrWait (after the IRQ)31void Bios338h ();32// IRQ33void Bios018h ();34void Bios130h ();3536void SoftReset (); // 0037void RegisterRamReset (); // 0138void Halt (); // 0239void IntrWait (); // 0440void VBlankIntrWait (); // 0541void Div (); // 0642void DivArm (); // 0743void Sqrt (); // 0844void ArcTan (); // 0945void ArcTan2 (); // 0A46void CpuSet (); // 0B47void CpuFastSet (); // 0C48void BgAffineSet (); // 0E49void ObjAffineSet (); // 0F50void LZ77UnCompWram (); // 1151void LZ77UnCompVram (); // 1252void HuffUnComp (); // 1353void RLUnCompWram (); // 1454void RLUnCompVram (); // 1555}56}5758#endif596061