summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 24a5e01b11fa4ac0b91fcd45c6828a69584c45d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "Camera.hpp"
#include <tonc.h>

int main() {
  irq_init(NULL);
  irq_enable(II_VBLANK);

  REG_DISPCNT = DCNT_MODE4;

  while (1) {
    VBlankIntrWait();
  }
}