resource.hpp 712 B

123456789101112131415161718192021222324252627282930313233
  1. namespace Resource {
  2. namespace GameBoy {
  3. extern const unsigned char BootDMG1[256];
  4. }
  5. namespace GameBoyColor {
  6. extern const unsigned char BootCGB0[2048];
  7. }
  8. namespace MSX {
  9. extern const unsigned char BIOS[32768];
  10. }
  11. namespace MSX2 {
  12. extern const unsigned char BIOS[32768];
  13. extern const unsigned char Sub[16384];
  14. }
  15. namespace Nintendo64 {
  16. namespace PIF {
  17. extern const unsigned char ROM[1984];
  18. extern const unsigned char NTSC[1984];
  19. extern const unsigned char PAL[1984];
  20. }
  21. }
  22. namespace SuperFamicom {
  23. extern const unsigned char Boards[31960];
  24. extern const unsigned char IPLROM[64];
  25. }
  26. namespace WonderSwan {
  27. extern const unsigned char Boot[4096];
  28. }
  29. namespace WonderSwanColor {
  30. extern const unsigned char Boot[8192];
  31. }
  32. }