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.

22 lines
336 B

  1. #include "game.h"
  2. #include "intro.h"
  3. #include "map.h"
  4. #include "sdk/hardware.h"
  5. #include "sdk/joypad.h"
  6. #include "sdk/video.h"
  7. #include "vram.h"
  8. void level(void) {
  9. lcd_disable();
  10. map_load(&map_intro);
  11. lcd_enable();
  12. while (1) {
  13. joypad_update();
  14. HALT();
  15. rIF = 0;
  16. vram_update();
  17. }
  18. }