%begin
@16_3ff8 %integer membot,memtop
%integer memory = memtop-membot
%integer kb = memory//1024
%integer mb = kb//1024
  %if mb<2 %start
    printstring("**"); newline
    printstring("** This machine only has "); write(kb,0)
    printstring(" kilobytes of memory - it is NOT SUITABLE for ML.")
    newline
    printstring("**"); newline
    %signal 0,1  {To bomb out of SETUP.COM file}
  %finish
%end
