Hacker News new | ask | show | jobs
by whartung 755 days ago
I dabble with the CP/M simulator in z80pack.

And I had to use stty to make it work better from the command line. At least from BASH on MacOS.

Minimally, you need to disable ^Z, or you send it into the background. ^Z is the EOF character for text files in CP/M.

The other is ^Y. Which is another suspend process command for BASH. ^Y is important for Turbo Pascal, it’s a key editing command.

I don’t think I’ve have to fix any others. Those two have let me do what I want so far.