github email
Grabbing KPrintF from FS-UAE
Mar 12, 2016
One minute read

KPrintF on the Amiga is used to print debug messages. By default it will output to SER: in 9600 baud. (There is also DKPrintF which will output to PAR:).

To grab this output when running an application under FS-UAE, you can do the following:

  1. Setup serial re-direction in FS-UAE:
serial_port = /some/file/somewhere
  1. Start socat:
socat pty,raw,echo=0,link=/some/file/somewhere -,raw,echo=0
  1. Start the emulator and run your application. All KPrintF’s should now appear to the terminal where socat is running.

Back to posts