Search found 6 matches

by plamazy
Mon Aug 01, 2016 7:55 am
Forum: Exodus
Topic: Debugging
Replies: 2
Views: 7737

Re: Debugging

Also, the disassembly shows A0-A7, which is what's expected for a 68000 but the register watch window shows A1-A8. That's kind of confusing for debugging work.
by plamazy
Mon Aug 01, 2016 7:35 am
Forum: Exodus
Topic: Debugging
Replies: 2
Views: 7737

Debugging

Are there any tutorials for Watchpoints and Breakpoints? When I create watchpoint, I don't seem to be able to edit it, once it's saved. Also, there are several options that aren't clear to me. I'm trying to break when a memory value is changed. I remember using this before but I can't seem to recall...
by plamazy
Tue Jun 02, 2015 4:57 am
Forum: Exodus
Topic: Exodus 2.0 + Open Source Release
Replies: 105
Views: 267094

Yay! Thanks for the release! I am trying it out and I notice it shows one controller that I can map to the keyboard. How do I map another controller to the keyboard? Settings->Input Mapping only shows "Generic 6-Button Controller (Control Port 1)" Can I change it to two, three-button 'classic' contr...
by plamazy
Thu Apr 02, 2015 6:43 am
Forum: Exodus
Topic: Simplified release of Exodus 1.1 coming soon
Replies: 34
Views: 44070

Hi,

Is there any news on the project? I am looking forward to the new version.

Thanks!
by plamazy
Thu Jul 03, 2014 8:40 pm
Forum: Exodus
Topic: Bug reports?
Replies: 48
Views: 70912

I found a bug while working on some code. Basically, the line movea.l #$00FF0D1E, A6 isn't updating the A6 register. That looks the same as what I posted about before: MOVEA.L $C(A6), A1 did not update A1 correctly. As I noted, the value in A1 didn't update, even after moving to another part of the...
by plamazy
Mon Jul 08, 2013 12:10 pm
Forum: Exodus
Topic: Debugger Problem
Replies: 0
Views: 12326

Debugger Problem

Hi! Thanks for the cool emulator. I've noticed a bug in the debugger where registers don't get updated. Particularly, I'm seeing A1 not get updated after: MOVEA.L $C(A6), A1 Later on, it's really confusing because A1 shows an address different from what it gets data from! MOVE.B $2(A1), D0 The comma...