도와주세요!!
글 수 15,339
2005.04.29 10:11:37 (*.94.111.150)
6692
C로 구현된 기능을 수행하는 ARM 어셈블리 프로그램을 작성하고자 합니다.도와
주세요~~ㅜㅜ
단, R0 points to the first string, R1 points to the second string)
const char Ch1[] = { "Start ARM Process course" };
const char Ch2[] = { "Start ARM Xrocess course" };
int strcmp(char *s1, char *s2)
{
unsigned int Ch1, Ch2;
unsigned int count;
do
{
Ch1=*s1++;
Ch2=*s2++;
count++;
}while(Ch1!=0&&Ch2!=0&&Ch1==Ch2);
return count;
}
void C_Entry(void)
{
- ARMulate console에 "strcmp test...!!!"를 출력
- strcmp() 호출
- ARMulate console에 비교 문자열중 몇 번째 문자에서 틀린 문자가 발견되었
는지 번호를 출력
}
주세요~~ㅜㅜ
단, R0 points to the first string, R1 points to the second string)
const char Ch1[] = { "Start ARM Process course" };
const char Ch2[] = { "Start ARM Xrocess course" };
int strcmp(char *s1, char *s2)
{
unsigned int Ch1, Ch2;
unsigned int count;
do
{
Ch1=*s1++;
Ch2=*s2++;
count++;
}while(Ch1!=0&&Ch2!=0&&Ch1==Ch2);
return count;
}
void C_Entry(void)
{
- ARMulate console에 "strcmp test...!!!"를 출력
- strcmp() 호출
- ARMulate console에 비교 문자열중 몇 번째 문자에서 틀린 문자가 발견되었
는지 번호를 출력
}