Title Dummy Device 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,'DEVICE command NOT implemented. Use SETUP instead.' db Cr,Lf, '$' end