Results 113 comments of Toni Wilen

What kind of remote debugging? Your post do not explain (or I simply don't "get it") what do you want to do, include some examples please.

Ok. I think you shouldn't use existing debugger commands because they are not stable or even supposed to be stable (it is mostly my own playground, tweaking/changing when I need...

Looks good. Just keep debug.c changes minimal, even if it means duplication. When you have some proof of concept (or better) ready, then it is time to check which parts...

Adding function call to hsync or vsync handlers (devices_hsync or devices_vsync*) is usually the best way to do. Use of UAE timers is only needed if you want cycle-exact triggers....

That gets really tricky and it is going to be impossible without adding helper routines to UAE Boot ROM. You can't safely allocate memory from emulator side (For example It...

I forgot that you can call any library function from trap routine with CallLib() function. You are not restricted to few special cases. bsdsocket.cpp is good example showing how it...

Debugger trap stuff added. filesys.cpp has "debugger_boot()" that sends signal to uae boot rom code which then creates new dos process and calls debugger_helper() with mode parameter=1. Here you can...

Easiest solution is to configure some dummy directory filesystem or enable some expansion that uses UAE boot rom.

Right, move.l d0,a6 is missing. What does RunCommand return in D0? Or does it hang? Also did you append \n at the end of command line? DOS reads arguments from...

Environment can be quite different than when run from CLI, no paths, current directory can be something else. Try with full path name ("dh0:c/dir dh0:" or so. Perhaps the dir...