[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Adt(pro)
> >>> all charecter output was displayed on the computer as a bunch of garbled characters.
The //c com port starts off at 300 baud by default -- and depending on
your cable disable flow control.
You can change the baud rate on the //c by keystrokes documented in
the //c reference manual (control-A, # b -- where # is the number
setting of the baud you want to set. Can't remember what those are
off the top of my head though)
You can key this in from the monitor to kick it in to 115.2 kbaud
(115200 baud):
300: a9 10 8d 8b c0 a9 0b 8d aa c0 ad a8 c0 60
300g
Translation:
LDA #$10
STA $C08B ;ACIA_Control Register
LDA #$0B
STA $C0AA ;ACIA_Command Register
LDA $C0A8 ;ACIA_Data
RTS
Note: This is an undocumented setting which somehow works. Don't
ask. :-D
- Follow-Ups:
- Re: Adt(pro)
- From: "John B. Matthews" <nospam@nospam.invalid>
- References:
- Adt(pro)
- From: "Alex_*nix_Learner" <ajfisherman@gmail.com>
- Re: Adt(pro)
- From: Polymorph <polymorph69@hotmail.com>
- Re: Adt(pro)
- From: "Alex_*nix_Learner" <ajfisherman@gmail.com>
- Re: Adt(pro)
- From: "Michael J. Mahon" <mjmahon@aol.com>