From 53be3593382c38b1ea67aeb4b22f2c1c135460b0 Mon Sep 17 00:00:00 2001 From: pjht Date: Tue, 30 Jan 2024 13:39:13 -0600 Subject: [PATCH] Properly handle ihex EOF record --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 8b20cda..3b2c1e9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -306,6 +306,7 @@ impl AltairEmulator { } } ihex::Record::StartLinearAddress(_) => todo!(), + ihex::Record::EndOfFile => (), _ => unimplemented!(), }; }