• Description:
    This is useful for including a binary data/file that will be available within program's code. If such data list will be in a procedure, this list will be overjumped to avoid mr guru :)

  • Changes:
    • from 0.19 it's possible to use INCBIN '*file' to make the file source-relative


  • Syntax:
      BYTE   list or string
      WORD   list
      LONG   list
    

    If string (BYTE only) wrote, no zero character will be added to the end, you have to add manualy '\0'.
      INCBIN list of file names
    

    Here will be placed listed files. If the filename beginns with the '*' sign, this sign will be replaces by the source file path.

    To be more usefull, you can sign these static fields with labels.

  • Example:
      rawdata: INCBIN 'ram:data.raw'
      BYTE '\0$VER: v0.1\0'