【发布时间】:2015-10-13 12:51:31
【问题描述】:
我正在尝试将这些变量转换为汇编可行的代码:
char s[] = “TA”;
short int x;
int e = 99;
我是用 int e 做的:
CLR.B D1 e = 99; // which compiles
我不确定如何处理数组或短整数? 我知道对于数组,我可以执行以下操作:
ARRAY: DC.W "Value here"
但这对字符数组有用吗?
【问题讨论】:
标签: assembly