[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Looking for Serial Card programming information (not SSC)
"Rich J." writes ...
>
> Hello,
>
> Trying to configure the Serial port of Oasis Apple II emulator.
>
> I'd like the basic commands to set BAUD RATE, stop bits, parity, flow
> control.
There is some info on serial interface commands which should work. See
http://apple2.org.za/gswv/a2zine/Docs/SerialPortFirmwareInterfaceCommands.txt .
>
> I'd also like to know how to send data to PR#1 (slot 1, where the card
> is at) with a POKE, instead of PRINTing it to PR#1.
>
> Rich
In a program, you can try POKEing the start location for SLOT 1 into the
output hook-- e.g. 100 POKE 54, 0: POKE 55, 193: ... .
From the keyboard, it seems to work okay for doing a LIST to the printer
if you enter POKE 54, 0: POKE 55, 193: LIST-- i.e. all in one input. But; just
the POKEs followed by a LIST at a separate prompt doesn't work because the
pointer gets switched back between KB inputs.
Rubywand