I looked thru the caode in zs.c and it appears that there are three options when a break is received: #if defined(KGDB) zskgdb(cs); #elif defined(DDB) Debugger(); #else printf("stopping on keyboard abort\n"); callrom(); #endif What if I want the break to be ignored? Is there an option elsewhere for that?