Assuming you are referring to CP/M 3 and/or ZPM3, then it is very easy. When you boot up, you will see that TMS0: is assigned as a video unit. Also notice that the Video Unit # is referred to in one of the Char Unit entries. Under CP/M 3 or ZPM3, all of the Char Units map directly to COMn: devices. So, you can refer to your TMS video by using the corresponding COMn: device. Below is an example boot from one of my machines:
Unit Device Type Capacity/Mode
---------- ---------- ---------------- --------------------
Char 0 ASCI0: RS-232 38400,8,N,1
Char 1 ASCI1: RS-232 38400,8,N,1
Char 2 UART0: RS-232 38400,8,N,1
Char 3 UART1: RS-232 38400,8,N,1
Char 4 UART2: RS-232 38400,8,N,1
Char 5 UART3: RS-232 38400,8,N,1
Char 6 TERM0: Terminal Video 0,ANSI
Char 7 PRPCON0: Terminal PropTerm,ANSI
Disk 0 MD0: RAM Disk 256KB,LBA
Disk 1 MD1: Flash Drive 384KB,LBA
Disk 2 FD0: Floppy Disk 3.5",DS/HD,CHS
Disk 3 FD1: Floppy Disk 3.5",DS/HD,CHS
Disk 4 IDE0: CompactFlash 3815MB,LBA
Disk 5 IDE1: Hard Disk --
Disk 6 IDE2: CompactFlash 3823MB,LBA
Disk 7 IDE3: Hard Disk --
Disk 8 IDE4: Hard Disk --
Disk 9 IDE5: Hard Disk --
Disk 10 SD0: SD Card 1886MB,LBA
Disk 11 PRPSD0: SD Card 15193MB,LBA
Video 0 TMS0: CRT Text,40x24
Sound 0 SND0: AY-3-8910 3+1 CHANNELS
In this case, TMS0: is assigned as Video 0. Video 0 is mapped to Char 5. You can then refer to Char 5 as COM5: in CP/M 3 or ZPM3.
So, if you wanted to make the TMS video be your console device, you would use:
DEVICE CON=COM5
Thanks,
Wayne