Hello Robin,
In the EDS file generation the array/record entries are not correct if the array/record is larger then 9 entries.
I've solved this by changing the line:
writer.WriteLine(string.Format("[{0:X}sub{1}]", index,subindex));
to:
writer.WriteLine(string.Format("[{0:X}sub{1:X}]", index,subindex));
('write'-routine in eds.cs).
br. Hendrik.