Created
June 10, 2018 09:50
-
-
Save rabejens/9ea45d20d3df996156e174c37b51d564 to your computer and use it in GitHub Desktop.
AmigaBASIC simple serial port program
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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