Include a file: Difference between revisions

Content added Content deleted
Line 2,474: Line 2,474:
09-28-12
09-28-12
</pre>
</pre>

=={{header|Z80 Assembly}}==
There are two different directives for including files: <code>include</code> and <code>incbin</code>.
* <code>include</code> is for assembly code that will be converted to machine code that the computer can run.
* <code>incbin</code> is for binary data such as graphics, which the assembler will convert as-is to binary and does not attempt to translate it into machine code.


=={{header|zkl}}==
=={{header|zkl}}==