Quoting constructs: Difference between revisions

Content deleted Content added
Peak (talk | contribs)
Puppydrum64 (talk | contribs)
No edit summary
Line 8:
 
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}}==
{{works with||VASM}}
<lang 6502asm>LookUpTable: db $00,$03,$06,$09,$12 ;a sequence of pre-defined bytes
 
MyString: db "Hello World!",0 ;a null-terminated string
 
GraphicsData: incbin "C:\game\gfx\tilemap.chr" ;a file containing the game's graphics</lang>