<--  back   Last regenerated: 2022-04-20 17:31:36 kio

zasm - Z80 Assembler – Version 4.4

Pseudo instructions

incbin

    incbin <filename>

Inserts a binary file. The file name must be given as an absolute path or relatively to the current source file.

The file's contents are just copied into the code segment verbatim.

Examples:
    incbin "image.gif"      ; file in same directory
    incbin "./image.gif"    ; file in same directory
    incbin "pics/g1.gif"    ; file in subdirectory "pics/"

This Pseudo instructions
8080 Assembler: 8080 pseudo instructions
pseudo instruction does the same as the assembler directive #insert:

#insert "image.gif"         ; file in same directory

Valid HTML   Valid CSS