lol its in c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
221 B

  1. #ifndef GBSDK_BANKING_H
  2. #define GBSDK_BANKING_H
  3. #include <stdint.h>
  4. extern __sfr current_bank;
  5. inline void switch_bank(bank_nr) {
  6. current_bank = bank_nr;
  7. *((uint8_t*)0x2000) = bank_nr;
  8. }
  9. #endif//LIB_BANKING_H