kcpmtk/undump.pas

13 lines
177 B
Plaintext
Raw Normal View History

2023-10-03 08:54:45 +00:00
program undump;
{
undump is a program to take the output from dump
and put it into binary format.
}
2023-10-03 19:28:45 +00:00
{$I 'binary.pas'}
{$I 'ihex.pas'}
begin
Writeln('UNDUMP V1.0');
end.