File COPY8.PS

Directory of image this file is from
This file as a plain text file

{$X+} program Copy8(ifile,ofile);
var ifile, ofile : file of eightbit {ascii works fine, also};
begin
  reset(ifile);
  if eof(ifile) then halt('ifile empty');
  rewrite(ofile);
  while not eof(ifile) do
    begin
      ofile^ := ifile^;
      put(ofile);
      get(ifile)
    end
end.



Feel free to contact me, David Gesswein djg@pdp8online.com with any questions, comments on the web site, or if you have related equipment, documentation, software etc. you are willing to part with.  I am interested in anything PDP-8 related, computers, peripherals used with them, DEC or third party, or documentation. 

PDP-8 Home Page   PDP-8 Site Map   PDP-8 Site Search