Skip to content

Instantly share code, notes, and snippets.

@rabejens
Created June 10, 2018 09:50
Show Gist options
  • Save rabejens/9ea45d20d3df996156e174c37b51d564 to your computer and use it in GitHub Desktop.
Save rabejens/9ea45d20d3df996156e174c37b51d564 to your computer and use it in GitHub Desktop.
AmigaBASIC simple serial port program
OPEN "COM1:9600,N,8,1" FOR INPUT AS 1
WHILE INKEY$=""
C$=INPUT$(1,1)
PRINT C$;
WEND
CLOSE 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment