Package ghidra.app.util.opinion
Class IntelHexRecordWriter
- java.lang.Object
-
- ghidra.app.util.opinion.IntelHexRecordWriter
-
public class IntelHexRecordWriter extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description IntelHexRecordWriter(int maxBytesPerLine, boolean dropExtraBytes)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addByte(Address address, byte b)
java.util.List<IntelHexRecord>
finish(Address entryPoint)
-
-
-
Constructor Detail
-
IntelHexRecordWriter
public IntelHexRecordWriter(int maxBytesPerLine, boolean dropExtraBytes)
Constructor- Parameters:
maxBytesPerLine
- the maximum number of bytes to write per line in the hex outputdropExtraBytes
- if true, only lines matchingmaxBytesPerLine
will be output; remaining bytes will be left out
-
-
Method Detail
-
addByte
public void addByte(Address address, byte b)
-
finish
public java.util.List<IntelHexRecord> finish(Address entryPoint)
-
-