I'm trying to make a tool that will send/receive bytes from the second uart port of my romwbw system (to send a paper tape file to a sym-1). I'm sure there's tools out there for this, but I'd really like to make my own because I think its a simple task to solve and I'd learn a bit about how the serial ports work.
I'm using a z180 with its integrated 2 uart ports.
I've seen tools like
TALK.COM, but they don't seem to be able to talk to devices like ASCI0/1. I don't have CRT or such, I just have this:
ASCI0: IO=0xC0 ASCI W/BRG MODE=115200,8,N,1
ASCI1: IO=0xC1 ASCI W/BRG MODE=115200,8,N,1
MD: UNITS=2 ROMDISK=384KB RAMDISK=384KB
SD: MODE=SC OPR=0x0C CNTR=0xCA TRDR=0xCB DEVICES=1
SD0: SDHC NAME=SA16G BLOCKS=0x01CD4000 SIZE=14760MB
I'm assuming that I need to use some bdos calls or such, are there good jumping off points for this in documentation/example code? I'm looking for assembly/c.