Include a file: Difference between revisions

Content deleted Content added
Puppydrum64 (talk | contribs)
Puppydrum64 (talk | contribs)
Line 2,474:
09-28-12
</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}}==