这是我的 ARM7 程序集片段
.global strCopy
.text
strCopy:
strCopyloop:
LDRB R2, [R1], #1
STRB R2, [R0], #1
CMP R2, #0
BNE strCopyloop
Bx LR
这是使用此函数的 C 文件
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
extern void strCopy(char* strTo, const char* strFrom);
int main(){
const char* str1 ="This one";
char* str2;
strCopy(str2,str1);
return 0;
}
我一生都无法弄清楚为什么它给了我一个分段错误。