From d36c0ec7df619a26c9229a3c99c836ca6c9783f2 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 21 Mar 2015 01:05:07 -0700 Subject: [PATCH] GBA: Fix RTC bincompat with 0.1 --- src/gba/hardware.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gba/hardware.h b/src/gba/hardware.h index 03c5fa849..4c56bbb60 100644 --- a/src/gba/hardware.h +++ b/src/gba/hardware.h @@ -54,7 +54,7 @@ enum GPIODirection { GPIO_READ_WRITE = 1 }; -DECL_BITFIELD(RTCControl, uint8_t); +DECL_BITFIELD(RTCControl, uint32_t); DECL_BIT(RTCControl, MinIRQ, 3); DECL_BIT(RTCControl, Hour24, 6); DECL_BIT(RTCControl, Poweroff, 7); @@ -67,7 +67,7 @@ enum RTCCommand { RTC_TIME = 6 }; -DECL_BITFIELD(RTCCommandData, uint8_t); +DECL_BITFIELD(RTCCommandData, uint32_t); DECL_BITS(RTCCommandData, Magic, 0, 4); DECL_BITS(RTCCommandData, Command, 4, 3); DECL_BIT(RTCCommandData, Reading, 7);