kcpmtk/ihex.pas

13 lines
203 B
Plaintext
Raw Normal View History

2023-10-03 10:07:21 +00:00
const
MaxRLen = 32;
type
{irec stores an individual record.}
irec = record
Addr : Integer;
Data : array[1...MaxRLen] of Byte;
MaxCount : Byte;
{procedure RdDumpLn;}
{procedure wrirec;}