VT100 terminal emulation to use with a Java-based 8-bit computer emulatorHow to send data to a serial port and see any answer?Outputting to the screen on an ARM Mini2440. Currently just has a login promptDifference between the terminal file and the terminal screenHow to enable/disable a serial port?list processes running inside of screen (manager with with VT100/ANSI terminal emulation)screen manager with VT100/ANSI terminal emulationttyUSB0 serial port crashes and locks, requires computer resetPolling for Serial Port InformationHow do I duplicate a serial terminal?serial device output looks fine in gnu screen but garbled using catDebian not recognizing my ttyS0 / console redirection not working
Trouble understanding the speech of overseas colleagues
Short story about space worker geeks who zone out by 'listening' to radiation from stars
Escape a backup date in a file name
Method to test if a number is a perfect power?
What is the difference between "behavior" and "behaviour"?
How to pronounce the slash sign
Tiptoe or tiphoof? Adjusting words to better fit fantasy races
Why Were Madagascar and New Zealand Discovered So Late?
You cannot touch me, but I can touch you, who am I?
How to be diplomatic in refusing to write code that breaches the privacy of our users
Pole-zeros of a real-valued causal FIR system
How do we know the LHC results are robust?
Is this apparent Class Action settlement a spam message?
Detecting if an element is found inside a container
Is `x >> pure y` equivalent to `liftM (const y) x`
Class Action - which options I have?
What is paid subscription needed for in Mortal Kombat 11?
Is expanding the research of a group into machine learning as a PhD student risky?
Why, precisely, is argon used in neutrino experiments?
How do I find the solutions of the following equation?
Unreliable Magic - Is it worth it?
What does "I’d sit this one out, Cap," imply or mean in the context?
Integer addition + constant, is it a group?
How easy is it to start Magic from scratch?
VT100 terminal emulation to use with a Java-based 8-bit computer emulator
How to send data to a serial port and see any answer?Outputting to the screen on an ARM Mini2440. Currently just has a login promptDifference between the terminal file and the terminal screenHow to enable/disable a serial port?list processes running inside of screen (manager with with VT100/ANSI terminal emulation)screen manager with VT100/ANSI terminal emulationttyUSB0 serial port crashes and locks, requires computer resetPolling for Serial Port InformationHow do I duplicate a serial terminal?serial device output looks fine in gnu screen but garbled using catDebian not recognizing my ttyS0 / console redirection not working
I'm successfully using GNU Screen as serial terminal to "talk" to my Altair 8800 clone (http://altairclone.com/) using serial line. The command I use is:
screen -istrip /dev/ttyUSB0
Screen does the VT100 emulation, strips off MSB from output etc. - works perfect.
Now, I'm writing an emulator of the Altair 8800 in Java and would like to use some terminal emulator to connect and talk to it, just like it was a real machine through a serial device.
What is the best way to solve this in the Linux world? Is there a way to use screen
for that? Something tells me the solution is trivial, but I just don't know it yet.
terminal gnu-screen serial-port programming serial-console
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm successfully using GNU Screen as serial terminal to "talk" to my Altair 8800 clone (http://altairclone.com/) using serial line. The command I use is:
screen -istrip /dev/ttyUSB0
Screen does the VT100 emulation, strips off MSB from output etc. - works perfect.
Now, I'm writing an emulator of the Altair 8800 in Java and would like to use some terminal emulator to connect and talk to it, just like it was a real machine through a serial device.
What is the best way to solve this in the Linux world? Is there a way to use screen
for that? Something tells me the solution is trivial, but I just don't know it yet.
terminal gnu-screen serial-port programming serial-console
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
I'm not sure, this seems on topic. He's asking for a recommendation of how to connect using a VT100 emulator to an Altair 8800. This seems like it could go on SO and SU as well.
– slm♦
Jun 19 '14 at 1:07
@slm The question is about how to make the Java program present a terminal interface. That's Java programming. We don't cater to programming questions here. user72879: your question is going to be migrated to Stack Overflow soon (do not repost).
– Gilles
Jun 19 '14 at 1:45
@Gilles - not gonna disagree, but it seemed borderline since it sounds like he's asking how to connect to the serial terminal.
– slm♦
Jun 19 '14 at 1:47
Possible duplicate of unix.stackexchange.com/q/117037/31760
– X Tian
yesterday
add a comment |
I'm successfully using GNU Screen as serial terminal to "talk" to my Altair 8800 clone (http://altairclone.com/) using serial line. The command I use is:
screen -istrip /dev/ttyUSB0
Screen does the VT100 emulation, strips off MSB from output etc. - works perfect.
Now, I'm writing an emulator of the Altair 8800 in Java and would like to use some terminal emulator to connect and talk to it, just like it was a real machine through a serial device.
What is the best way to solve this in the Linux world? Is there a way to use screen
for that? Something tells me the solution is trivial, but I just don't know it yet.
terminal gnu-screen serial-port programming serial-console
I'm successfully using GNU Screen as serial terminal to "talk" to my Altair 8800 clone (http://altairclone.com/) using serial line. The command I use is:
screen -istrip /dev/ttyUSB0
Screen does the VT100 emulation, strips off MSB from output etc. - works perfect.
Now, I'm writing an emulator of the Altair 8800 in Java and would like to use some terminal emulator to connect and talk to it, just like it was a real machine through a serial device.
What is the best way to solve this in the Linux world? Is there a way to use screen
for that? Something tells me the solution is trivial, but I just don't know it yet.
terminal gnu-screen serial-port programming serial-console
terminal gnu-screen serial-port programming serial-console
edited Jun 19 '14 at 1:09
slm♦
255k71538687
255k71538687
asked Jun 18 '14 at 7:57
user72879user72879
111
111
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ yesterday
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
I'm not sure, this seems on topic. He's asking for a recommendation of how to connect using a VT100 emulator to an Altair 8800. This seems like it could go on SO and SU as well.
– slm♦
Jun 19 '14 at 1:07
@slm The question is about how to make the Java program present a terminal interface. That's Java programming. We don't cater to programming questions here. user72879: your question is going to be migrated to Stack Overflow soon (do not repost).
– Gilles
Jun 19 '14 at 1:45
@Gilles - not gonna disagree, but it seemed borderline since it sounds like he's asking how to connect to the serial terminal.
– slm♦
Jun 19 '14 at 1:47
Possible duplicate of unix.stackexchange.com/q/117037/31760
– X Tian
yesterday
add a comment |
I'm not sure, this seems on topic. He's asking for a recommendation of how to connect using a VT100 emulator to an Altair 8800. This seems like it could go on SO and SU as well.
– slm♦
Jun 19 '14 at 1:07
@slm The question is about how to make the Java program present a terminal interface. That's Java programming. We don't cater to programming questions here. user72879: your question is going to be migrated to Stack Overflow soon (do not repost).
– Gilles
Jun 19 '14 at 1:45
@Gilles - not gonna disagree, but it seemed borderline since it sounds like he's asking how to connect to the serial terminal.
– slm♦
Jun 19 '14 at 1:47
Possible duplicate of unix.stackexchange.com/q/117037/31760
– X Tian
yesterday
I'm not sure, this seems on topic. He's asking for a recommendation of how to connect using a VT100 emulator to an Altair 8800. This seems like it could go on SO and SU as well.
– slm♦
Jun 19 '14 at 1:07
I'm not sure, this seems on topic. He's asking for a recommendation of how to connect using a VT100 emulator to an Altair 8800. This seems like it could go on SO and SU as well.
– slm♦
Jun 19 '14 at 1:07
@slm The question is about how to make the Java program present a terminal interface. That's Java programming. We don't cater to programming questions here. user72879: your question is going to be migrated to Stack Overflow soon (do not repost).
– Gilles
Jun 19 '14 at 1:45
@slm The question is about how to make the Java program present a terminal interface. That's Java programming. We don't cater to programming questions here. user72879: your question is going to be migrated to Stack Overflow soon (do not repost).
– Gilles
Jun 19 '14 at 1:45
@Gilles - not gonna disagree, but it seemed borderline since it sounds like he's asking how to connect to the serial terminal.
– slm♦
Jun 19 '14 at 1:47
@Gilles - not gonna disagree, but it seemed borderline since it sounds like he's asking how to connect to the serial terminal.
– slm♦
Jun 19 '14 at 1:47
Possible duplicate of unix.stackexchange.com/q/117037/31760
– X Tian
yesterday
Possible duplicate of unix.stackexchange.com/q/117037/31760
– X Tian
yesterday
add a comment |
1 Answer
1
active
oldest
votes
screen
supports telnet
protocol (like so: screen //telnet destination
), so you could implement that in your emulator.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f137760%2fvt100-terminal-emulation-to-use-with-a-java-based-8-bit-computer-emulator%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
screen
supports telnet
protocol (like so: screen //telnet destination
), so you could implement that in your emulator.
add a comment |
screen
supports telnet
protocol (like so: screen //telnet destination
), so you could implement that in your emulator.
add a comment |
screen
supports telnet
protocol (like so: screen //telnet destination
), so you could implement that in your emulator.
screen
supports telnet
protocol (like so: screen //telnet destination
), so you could implement that in your emulator.
answered Jul 8 '15 at 17:51
sendmoreinfosendmoreinfo
1,8091131
1,8091131
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f137760%2fvt100-terminal-emulation-to-use-with-a-java-based-8-bit-computer-emulator%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'm not sure, this seems on topic. He's asking for a recommendation of how to connect using a VT100 emulator to an Altair 8800. This seems like it could go on SO and SU as well.
– slm♦
Jun 19 '14 at 1:07
@slm The question is about how to make the Java program present a terminal interface. That's Java programming. We don't cater to programming questions here. user72879: your question is going to be migrated to Stack Overflow soon (do not repost).
– Gilles
Jun 19 '14 at 1:45
@Gilles - not gonna disagree, but it seemed borderline since it sounds like he's asking how to connect to the serial terminal.
– slm♦
Jun 19 '14 at 1:47
Possible duplicate of unix.stackexchange.com/q/117037/31760
– X Tian
yesterday