将字符转换成asc码

REPORT  ZCR_WXJHCX.

*going from A to 65

data : c value 'A'.
field-symbols : <n> type x.
data : rn type i.
assign c to <n> casting.
move <n> to rn.
write rn.

*going from 66 to B

data : i type i value 66.
data : x type x.
field-symbols : <fc> type c.
move i to x.
assign x to <fc> casting type c.
move <fc> to c.
write c. 

你可能感兴趣的:(将字符转换成asc码)