sepseel wrote:
Sadly I don't know how to do any of those things, could you point me to a good source on how to do one of those things ?
OK, sounds like we need to slow down, backtrack, and do some reading. Jeff's projects contain a number of monitors. What you have is a serial port, so ideally we need to
- find a monitor program which uses a serial port
- read that code and start to understand what's going on
- modify the code to suit your hardware (which is to say, port the monitor to your machine)
- run the code on your hardware
In the meantime, I would suggest running something on Kowalski's simulator to get a feel for computing at this low level - it sounds like this might be new territory for you. But it's a lot of fun - I recommend exploring.
First thing I found, still in Jeff T's projects, is a tiny program which sprays characters out of a serial device (sometimes called ACIA, sometimes UART)
https://github.com/jefftranter/6502/blo ... et/demo1.sIt would not be a bad idea to get something like this to run. It's much like a Hello World.