Thanks Ken. I just tried that and it doesn’t help. I set a breakpoint at the command found address and typed a valid command name and it never reaches it. So, it has to be around where you’re looking. I’ve been using SIMH which is not great IMHO for tracing so I’m going to see if I can run this in another emulator with a debugger. Rich -- Rich Cini http://cini.classiccmp.org https://github.com/RichCini From: Kenneth Gober <kgober@gmail.com> Date: Friday, May 15, 2026 at 12:52 AM To: vcf-midatlantic <vcf-midatlantic@lists.vcfed.org> Cc: Richard Cini <rich.cini@gmail.com> Subject: Re: [vcf-midatlantic] 8080 monitor command line processor help needed On Thu, May 14, 2026 at 9:15 PM Richard Cini via vcf-midatlantic <vcf-midatlantic@lists.vcfed.org<mailto:vcf-midatlantic@lists.vcfed.org>> wrote: POP D ; Restore table pointer POP H ; Restore input pointer ; Move to next table entry LXI H,CMD_LEN + 2 ; Size of entry (string + address) DAD D XCHG I think the "POP H" needs to be moved after "XCHG". otherwise LXI H obliterates it and you lose track of the input pointer. -ken