From: vintagepc <53943260+vintagepc@users.noreply.github.com> Date: Sun, 18 Apr 2021 21:46:57 +0000 (-0400) Subject: Fix #446 - bug in multipart ihex X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=3a422e89092006bd82fc1982bd0fdea50a5ac512;p=sx%2Fsimavr.git Fix #446 - bug in multipart ihex --- diff --git a/simavr/sim/sim_hex.c b/simavr/sim/sim_hex.c index 18047c2..05fd65d 100644 --- a/simavr/sim/sim_hex.c +++ b/simavr/sim/sim_hex.c @@ -132,7 +132,8 @@ read_ihex_chunks( case 0: // normal data addr = segment | (bline[1] << 8) | bline[2]; break; - case 1: // end of file + case 1: // end of file - reset segment + segment = 0; continue; case 2: // extended address 2 bytes segment = ((bline[4] << 8) | bline[5]) << 4;