1

I have very old DOS program, it was made 20 years ago in Clipper. I need to make some little modification. Ofc I tried Decompiling to ASM, but code looks horrible.

abarisone
  • 3,707
  • 11
  • 35
  • 54
ujemny
  • 39
  • 1
  • 7

2 Answers2

2

You didn't mention the Clipper version, but on Vetusware (the biggest free abandonware downloads collection in the universe) you can find a decompiler for version 5, dated 1994. It might suit your needs.

abarisone
  • 3,707
  • 11
  • 35
  • 54
0

Some years ago I had one called "Clipper Decompiler" or "Unclipper" and its internal protection was:

  • put in several places on your code, before compiling, this: ERRORSYS=0987654321

and no one will decompile your code with "unclip"

ascripter
  • 5,665
  • 12
  • 45
  • 68