Include a file: Difference between revisions

Line 67:
include "math.asm"
;eof</lang>
 
=={{header|68000 Assembly}}==
{{trans|6502 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|AArch64 Assembly}}==
1,489

edits