From c91ce4cfeafd8eb9e33c7da8ad5314e9b3422987 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 22 Apr 2024 21:57:20 -0400 Subject: [PATCH] Ensure all routes return. --- Components/9918/Implementation/PersonalityTraits.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Components/9918/Implementation/PersonalityTraits.hpp b/Components/9918/Implementation/PersonalityTraits.hpp index adc536192..6d035f7a4 100644 --- a/Components/9918/Implementation/PersonalityTraits.hpp +++ b/Components/9918/Implementation/PersonalityTraits.hpp @@ -38,6 +38,7 @@ constexpr size_t memory_size(Personality p) { case TI::TMS::V9938: return 128 * 1024; case TI::TMS::V9958: return 192 * 1024; } + return 0; } constexpr size_t memory_mask(Personality p) {