Fix alarm second assignment to use alarm minute

Co-Authored-By: shaeon <10370710+shaeon@users.noreply.github.com>
This commit is contained in:
Aitor Gómez García
2025-11-11 17:40:43 +01:00
parent 66cc71e56e
commit 58495f4cc6

View File

@@ -92,7 +92,7 @@ wire [7:0] io_readdata_next =
(ram_address == 7'h00) ? rtc_second :
(ram_address == 7'h01) ? alarm_second :
(ram_address == 7'h02) ? rtc_minute :
(ram_address == 7'h03) ? alarm_second :
(ram_address == 7'h03) ? alarm_minute :
(ram_address == 7'h04) ? rtc_hour :
(ram_address == 7'h05) ? alarm_hour :
(ram_address == 7'h06) ? rtc_dayofweek :