Please find enclosed a 7 bytes switch-off program for inclusion on Super as
well as the source code to be assembled with A86 assembler.

>I need a small COM file (under 1kb) that turns the palmtop off.

begin 644 off.com
'N`!"S17-(```
`
end

Jorgen


; Switch hp200lx off.  (A86 assembler)
main:
        mov ax,4200h            ; al=0 use system profile
        ;mov ax,4201h            ; al=1 force suspend
        int 15h
        int 20h

  
