The latest ZXDB database update will be applied today at 1530 BST. The site goes down for around 30 minutes whilst this happens.

Breakpoints in Fuse debugger

Struggling with Fuse or trying to find an emulator with a specific feature. Ask your questions here.
Post Reply
mjwilson
Dizzy
Posts: 78
Joined: Sun Apr 22, 2018 9:36 am

Breakpoints in Fuse debugger

Post by mjwilson »

I'm in Fuse (Windows, 1.6.0), emulating a Spectrum 128, and trying to set a breakpoint when 0xC0D8 is written to.

I can do

Code: Select all

breakpoint write 0xc0d8
which works OK - but that fires whatever memory page is paged in at 0xC000. I'm trying to refine that to ONLY fire when the default memory page is paged in.

Looking at https://manpages.ubuntu.com/manpages/xe ... r/debugger it seems like I should be able to do

Code: Select all

breakpoint write 0:0x00d8
but that isn't allowed, I get

Code: Select all

---------------------------
Fuse - Error
---------------------------
Invalid debugger command: syntax error, unexpected ':', expecting $end or '\n'
---------------------------
Any hints?
User avatar
Guesser
Manic Miner
Posts: 641
Joined: Wed Nov 15, 2017 2:35 pm
Contact:

Re: Breakpoints in Fuse debugger

Post by Guesser »

Code: Select all

br wr RAM:0:0x00d8
mjwilson
Dizzy
Posts: 78
Joined: Sun Apr 22, 2018 9:36 am

Re: Breakpoints in Fuse debugger

Post by mjwilson »

Thanks.
Post Reply