diff options
author | yenatch <yenatch@gmail.com> | 2013-09-09 22:44:48 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-09 22:44:48 -0400 |
commit | 84a9b3907b9db08ee38e873554d8a6b4ac1b72b4 (patch) | |
tree | e804b9ed15832481d632904f42355743d9232515 /home/double_speed.asm | |
parent | 6439706943b53ad756d481dea683fa8ee97f4981 (diff) |
rename common/ to home/
Diffstat (limited to 'home/double_speed.asm')
-rw-r--r-- | home/double_speed.asm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/home/double_speed.asm b/home/double_speed.asm new file mode 100644 index 000000000..fc1234215 --- /dev/null +++ b/home/double_speed.asm @@ -0,0 +1,31 @@ +; The CGB hardware introduces Double Speed Mode. +; While active, the clock speed is doubled. + +; The hardware can switch between normal speed +; and double speed at any time, but LCD output +; collapses during the switch. + +DoubleSpeed: ; 2fef + ld hl, rKEY1 + bit 7, [hl] + jr z, SwitchSpeed + ret +; 2ff7 + +NormalSpeed: ; 2ff7 + ld hl, rKEY1 + bit 7, [hl] + ret z +; 2ffd + +SwitchSpeed: ; 2ffd + set 0, [hl] + xor a + ld [rIF], a + ld [rIE], a + ld a, $30 + ld [rJOYP], a + stop ; rgbasm adds a nop after this instruction by default + ret +; 300b + |