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.

20 lines
270 B

  1. #include "game.h"
  2. #include "map.h"
  3. #include "sdk/hardware.h"
  4. #include "sdk/joypad.h"
  5. #include "sdk/video.h"
  6. void level(void) {
  7. lcd_off();
  8. // map_load();
  9. rLCDC |= LCDC_ON;
  10. while (1) {
  11. joypad_update();
  12. HALT();
  13. rIF = 0;
  14. }
  15. }