MediaWiki:Sitenotice:
2024-03-02: The wiki ran out of disk space, so things were not working. This has been resolved by adding another 5GB of quota ;-) Thanks to Tim Lindner for reporting the issues. 2020-05-17: If a page gives you an error about some revision not being found, just EDIT the page and the old page should appear in the editor. If it does, just SAVE that and the page should be restored. OS-9 Al (talk) 12:22, 17 May 2020 (CDT)

PSYMON

From CoCopedia - The Tandy/Radio Shack Color Computer Wiki
Jump to navigation Jump to search

PSYMON 1.20B

PSYMON running on CoCo

The original Psymon was used on Motorola EXORcisor boards in the 1970s and it loads and runs from FC00 with only the MPU vectors reserved.

INSTRUCTIONS, SOURCE, LICENSE

File:Psymon120b.zip

ASSEMBLER SOURCE

File:Cocopsymon120b.zip

Contains PSYMON120B.s assembly source code.

ASSEMBLING PSYMON

Download or setup William "lostwizard" Astle's LWTools source repo

Example assembly command, assuming the source is saved as PSYMON120B.s

  lwasm -9 -f raw --list=PSY120B.txt --symbols=PSY120B-sym.txt -o PSY120B.BIN PSYMON120B.s

This will give you a 1KiB raw binary output file.

For a Motorola S-record format used by some tools:

  lwasm -9 -f srec -o PSY120B.srec PSYMON120B.s

For an Intel hexdump format used by some tools:

  lwasm -9 -f ihex -o PSY120B.ihex PSYMON120B.s

COCO ARCHIVE CONTRIBUTION

The version I uploaded to the Color Computer Archive contains the original source from the PDF for historical / archival purposes.

I also included additional modified versions for the Color Computer 1, 2, and 3 as well.

Color Computer Archive direct link

File:COCOPSY.zip

COCO MODIFICATIONS

The CoCo1/2 version loads and runs Psymon at $6C00 so its for a 32K CoCo - but could be moved much lower for 16K or 4K. It's probably best to run CLEAR 200,&H6C00 before LOADM so that its protected from BASIC itself.

The CoCo3 version is sneakier - it loads in at $FC0A and uses RAM at $FE69 so that it can be co-resident with Super Extended BASIC without conflict rather than taking away a bit of the BASIC workspace RAM.

Both of these use the POLCAT and CHROUT ROM routines for simplicity as a quick port.

Providing standalone keyboard and screen output console drivers is left as an exercise for the reader.

SEE ALSO

Percom Data Corp 1976 - 1986

Percom Dealer Signup Package - PSYMON ROM listed page 11

Mirrored from: Exile In Paradise Tandy Color Computer Psymon

RTS

Return to Programming