Declaring strings in GoAsm

来源:互联网 发布:二战后美国经济数据 编辑:程序博客网 时间:2024/06/06 21:41

Declaring strings

Strings may be in single or double quotes. Some examples are:-
String1 DB 'This is a string'        DB 'This is a string with "internal" quotes'String2 DB "A string in double quotes"        DB "I enjoyed the string's contents"String3 DB '"A string itself in double quotes"'         DB "'A string itself in single quotes'"         DB "'A string's own single quotes'"