diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-05-23 12:48:14 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-05-23 12:48:14 -0400 |
| commit | 32b92ca51c73f1ad9be169bef476b9c93687e2a4 (patch) | |
| tree | 310cbf0ee30c832941a1afc0da5ff35e1089c292 /mobile | |
| parent | 4e776d4fa6bb0510fa06416ad7a6dd9ffe0ff724 (diff) | |
Start improving sprite movement engine (to do: identify bit flags)
Introduce maskbits N[, S]: optionally shift the bitmask
Diffstat (limited to 'mobile')
| -rw-r--r-- | mobile/mobile_40.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/mobile_40.asm b/mobile/mobile_40.asm index c64e348de..f82f3d2d3 100644 --- a/mobile/mobile_40.asm +++ b/mobile/mobile_40.asm @@ -83,7 +83,7 @@ EnableMobile: ; 100082 call DoubleSpeed xor a ld [rIF], a - ld a, 1 << VBLANK + 1 << LCD_STAT + 1 << TIMER + 1 << SERIAL + ld a, 1 << VBLANK | 1 << LCD_STAT | 1 << TIMER | 1 << SERIAL ld [rIE], a xor a ld [hMapAnims], a |
