Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 348 Bytes

incbin.md

File metadata and controls

25 lines (17 loc) · 348 Bytes

incbin - Include Binary

Includes a file into your code copying bytes verbatim.

_('incbin', filename[, offset[, length]]);

Include a whole file

_('incbin', __filename);

Skip first 100 bytes of a file

_('incbin', __filename, 100);

Include only bytes 3 to 6 of a file

_('incbin', __filename, 3, 6);