Re: [hatari-devel] Bug in debugger when reading longs |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
- To: hatari-devel <hatari-devel@xxxxxxxxxxxxxxxxxxx>
- Subject: Re: [hatari-devel] Bug in debugger when reading longs
- From: David Savinkoff <dsavnkff@xxxxxxxxx>
- Date: Tue, 23 Jan 2018 12:29:19 -0700 (MST)
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telus.net; s=neo; t=1516735759; bh=+ScrtO/O8j8BVUPsmsoEnqxUW6YrkjwxWxS2WOJunPo=; h=Date:From:To:In-Reply-To:Subject; b=nDZVhnbe0Pa8iOLokLgN6pTAyzp616TduE6Nv0H1sOJiDFmnGkhk/WXrBVKENtXtS JdZyiDQdhyILyHvd+4ka6nkDQO+vGqBlKFW2KKBGdHw/Kjzr27WJm8PT86qW29GGW+ tQo5+JBEbuKjfbu5OvV9PEaez9Q5UJy4aqo0xgZcAF28+k4/ZYzYdMglSZtqKKWDFP Tak9TS/AcU0UIVZVn47zyOod04ZEJeHavGaVdWwjtxOey8jLpyAsTkJQFD5aaMZaNd XavngYdcIsj6r50K/fJ8wnWtzPG8HxYU8nl/Ldf5YEwdK7ufQeELJfiwcYQKQerccG BaaybLjvlIoOg==
- Thread-index: Ry4kE3afI3kilrDiOIS8d54CigxB9w==
- Thread-topic: Bug in debugger when reading longs
----- On Jan 23, 2018, at 4:37 AM, Nicolas Pomarède wrote:
> Le 23/01/2018 à 13:23, Miro Kropáček a écrit :
>> Hi,
>>
>> I've found a bug, hopefully reproducible.
>>
>>> b a5 = $c4b4 && d2 = $11
>> CPU condition breakpoint 2 with 2 condition(s) added:
>> a5 = $c4b4 && d2 = $11
....
>
>
> Hi
>
> Yes, the problem is that currently there's no "refetch" when PC reg is
> changed, so although you changed PC, the previously prefetched values
> were kept and the next instruction will be a mix between old prefetch
> values and new prefetch ones.
Spectre strikes again! :-)
> I already planned to have a look at this some time ago, I will try to
> give it a go.
>
> Nicolas