﻿;   Test monitor.bin<
;   Kaypro 4/84<
;   H montest.hex<
;   g 8000 
;   z80asm montest/lh 
;<
    org       8000h<
;    
    pop       de<
    ld        sp,0000<
    push      de<
;    
    call      one<
    ret<
one:ld        hl,msg<
    call      09ffh<
    ret<
msg:db        13,10<
    db        "Kaypro 4/84",13,10<
    db        "Kurt Pieper"<
    db        13,10,0<
end<
