all repos — mgba @ c0eb7c81f70d94b21b931b6a1ed44e7b9c9f5dd3

mGBA Game Boy Advance Emulator

src/gba/gba-bios.h (view raw)

 1#ifndef GBA_BIOS_H
 2#define GBA_BIOS_H
 3
 4#include "common.h"
 5
 6#include "arm.h"
 7
 8void GBASwi16(struct ARMCore* cpu, int immediate);
 9void GBASwi32(struct ARMCore* cpu, int immediate);
10
11uint32_t GBAChecksum(uint32_t* memory, size_t size);
12const uint32_t GBA_BIOS_CHECKSUM;
13const uint32_t GBA_DS_BIOS_CHECKSUM;
14
15#endif