例如,我想在C中写出像'a'
而不是0x61
这样的内容。
手册在https://sourceware.org/binutils/docs/as/Chars.html提到了他们,但没有一个例子,我不确定我是否明白。
答案 0 :(得分:5)
/* Immediate. Without the `$`, does a memory access, and segfaults! */
mov $'a, %al
/* al == 0x61 */
/* Memory. */
mov c, %al
/* al == 0x62 */
c: .byte 'b
/* Space character works. */
mov $' , %al
/* al == 0x20 */
/* Backslash escapes work. */
mov $'\n , %al
/* al == 0x0A */
实际上有一个例子:https://sourceware.org/binutils/docs-2.25/as/Characters.html:
.byte 74, 0112, 092, 0x4A, 0X4a, 'J, '\J # All the same value.
我不喜欢这种语法,原因如下:
MACRO($'a)
失败,因为cpp将'
视为char字面。$'
,这很难被观察到