git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

commit c1745dd5a946a7dc6f830cc61b383f22df33d256
parent 9fc175a4d78a0555dd9fa175526d038a384458c2
Author: Toxa <untoxa@mail.ru>
Date:   Wed,  1 Feb 2023 19:28:54 +0300

GB: fix overflow of the nested timer interrupt vector into the serial interrupt vector

Diffstat:
Mgbdk-lib/libc/targets/sm83/tim_nested.s7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gbdk-lib/libc/targets/sm83/tim_nested.s b/gbdk-lib/libc/targets/sm83/tim_nested.s @@ -10,10 +10,13 @@ EI PUSH AF PUSH HL - LD HL, #.int_0x50 - JP .int + JP .process_TIM_callbacks .area _HOME +.process_TIM_callbacks: + LD HL, #.int_0x50 + JP .int + _add_low_priority_TIM:: JP .add_TIM

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.