gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit f4d1fa78a85f1055b04c6b7ab69fd153141f93c6
parent 934ace0ea7f9708ffa482229204025d904c3752b
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Mon, 29 Jul 2024 22:55:49 +0200

flash address does not need to be 64 bit

Diffstat:
Msource/hardwareLib/i2cFlash.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/hardwareLib/i2cFlash.h b/source/hardwareLib/i2cFlash.h @@ -63,7 +63,7 @@ namespace hwLib State m_state = State::ReadDeviceSelect; uint8_t m_deviceSelect = 0; - uint64_t m_address = 0; + uint32_t m_address = 0; Data m_data; };