Title Dummy Stat Command (8_Feb_84) ; ; Copyright 1984 ; Morrow Designs, Inc. ; San Leandro, Ca. ; .z80 aseg org 0100h PrnStr equ 9 ;Cpm Print String Command Bdos equ 5 ;Bdos Call Cr equ 0Dh ;Carriage Return Lf equ 0Ah ;Line Feed Stat: ld c,PrnStr ld de,String call Bdos jp 0 ;Return to system String: db Cr,Lf,'STAT command does NOT exist in CP/M Plus.' db Cr,Lf,'Use SHOW, SET, or DIR [full].', Cr,Lf, '$' end