Quoting constructs: Difference between revisions

Content added Content deleted
No edit summary
Line 9: Line 9:
Note: This is primarily for quoting constructs for data to be "embedded" in some way into a program. If there is some special format for external data, it may be mentioned but that isn't the focus of this task.
Note: This is primarily for quoting constructs for data to be "embedded" in some way into a program. If there is some special format for external data, it may be mentioned but that isn't the focus of this task.
=={{header|6502 Assembly}}==
=={{header|6502 Assembly}}==
{{works with||VASM}}
{{works with|VASM}}
<lang 6502asm>LookUpTable: db $00,$03,$06,$09,$12 ;a sequence of pre-defined bytes
<lang 6502asm>LookUpTable: db $00,$03,$06,$09,$12 ;a sequence of pre-defined bytes


Line 15: Line 15:


GraphicsData: incbin "C:\game\gfx\tilemap.chr" ;a file containing the game's graphics</lang>
GraphicsData: incbin "C:\game\gfx\tilemap.chr" ;a file containing the game's graphics</lang>




=={{header|Go}}==
=={{header|Go}}==