diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2019-05-25 13:54:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-25 13:54:29 -0400 |
commit | e8ddecd0eb1b79f2436f1ea8a0f2163bedec7550 (patch) | |
tree | 0d512816b512f747fe7c8e795df4ca34f8efaec0 /home/init.asm | |
parent | b24cd55f968909c3ec29c6455a32463c987f3063 (diff) | |
parent | 476f9ba40d5b59fd724ac1234b34448df372d52c (diff) |
Merge pull request #636 from mid-kid/patch
Small cleanups
Diffstat (limited to 'home/init.asm')
-rw-r--r-- | home/init.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/init.asm b/home/init.asm index 676b5460a..b8c4d90a9 100644 --- a/home/init.asm +++ b/home/init.asm @@ -6,7 +6,7 @@ Reset:: call ClearPalettes xor a ldh [rIF], a - ld a, 1 ; VBlank int + ld a, 1 << VBLANK ldh [rIE], a ei @@ -154,7 +154,7 @@ Init:: xor a ldh [rIF], a - ld a, %1111 ; VBlank, LCDStat, Timer, Serial interrupts + ld a, IE_DEFAULT ldh [rIE], a ei |