1	;; test the parsing of strings and character constants
2	section .data
3laf:
4	defb "single:'"
5	defb 'double:"',laf
6	defb 'escape:\\'
7
8	ex af,af'
9af0:
10	cp '9'+1
11
12